/* ScummVM - Graphic Adventure Engine * * ScummVM is the legal property of its developers, whose names * are too numerous to list here. Please refer to the COPYRIGHT * file distributed with this source distribution. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifndef MEDIASTATION_MEDIASCRIPT_FUNCTION_H #define MEDIASTATION_MEDIASCRIPT_FUNCTION_H #include "common/array.h" #include "common/hashmap.h" #include "mediastation/clients.h" #include "mediastation/datafile.h" #include "mediastation/mediascript/codechunk.h" namespace MediaStation { enum Platform { kPlatformParamTokenUnknown = 0, kPlatformParamTokenWindows = 0x76D, kPlatformParakTokenMacintosh = 0x76E }; class ScriptFunction { public: ScriptFunction(Chunk &chunk); ~ScriptFunction(); ScriptValue execute(Common::Array &args); uint _contextId = 0; uint _id = 0; private: CodeChunk *_code = nullptr; }; class FunctionManager : public ParameterClient { public: FunctionManager() {}; virtual ~FunctionManager(); virtual bool attemptToReadFromStream(Chunk &chunk, uint sectionType) override; ScriptValue call(uint functionId, Common::Array &args); void deleteFunctionsForContext(uint contextId); private: Common::HashMap _functions; void script_GetPlatform(Common::Array &args, ScriptValue &returnValue); void script_Random(Common::Array &args, ScriptValue &returnValue); void script_TimeOfDay(Common::Array &args, ScriptValue &returnValue); void script_SquareRoot(Common::Array &args, ScriptValue &returnValue); void script_GetUniqueRandom(Common::Array &args, ScriptValue &returnValue); void script_CurrentRunTime(Common::Array &args, ScriptValue &returnValue); void script_SetGammaCorrection(Common::Array &args, ScriptValue &returnValue); void script_GetDefaultGammaCorrection(Common::Array &args, ScriptValue &returnValue); void script_GetCurrentGammaCorrection(Common::Array &args, ScriptValue &returnValue); void script_SetAudioVolume(Common::Array &args, ScriptValue &returnValue); void script_GetAudioVolume(Common::Array &args, ScriptValue &returnValue); void script_SystemLanguagePreference(Common::Array &args, ScriptValue &returnValue); void script_SetRegistry(Common::Array &args, ScriptValue &returnValue); void script_GetRegistry(Common::Array &args, ScriptValue &returnValue); void script_SetProfile(Common::Array &args, ScriptValue &returnValue); void script_DebugPrint(Common::Array &args, ScriptValue &returnValue); // 101 Dalmatians. void script_MazeGenerate(Common::Array &args, ScriptValue &returnValue); void script_MazeApplyMoveMask(Common::Array &args, ScriptValue &returnValue); void script_MazeSolve(Common::Array &args, ScriptValue &returnValue); void script_BeginTimedInterval(Common::Array &args, ScriptValue &returnValue); void script_EndTimedInterval(Common::Array &args, ScriptValue &returnValue); // IBM/Crayola. void script_Drawing(Common::Array &args, ScriptValue &returnValue); }; } // End of namespace MediaStation #endif