/* 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 * 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 AGS_PLUGINS_AGSCREDITZ_AGSCREDITZ1_H #define AGS_PLUGINS_AGSCREDITZ_AGSCREDITZ1_H #include "ags/plugins/ags_creditz/ags_creditz.h" namespace AGS3 { namespace Plugins { namespace AGSCreditz { class AGSCreditz1 : public AGSCreditz { SCRIPT_HASH_SUB(AGSCreditz1, AGSCreditz) private: void SetCredit(ScriptMethodParams ¶ms); void ScrollCredits(ScriptMethodParams ¶ms); void GetCredit(ScriptMethodParams ¶ms); void IsCreditScrollingFinished(ScriptMethodParams ¶ms); void SetCreditImage(ScriptMethodParams ¶ms); void PauseScroll(ScriptMethodParams ¶ms); void ScrollReset(ScriptMethodParams ¶ms); void SetEmptyLineHeight(ScriptMethodParams ¶ms); void GetEmptyLineHeight(ScriptMethodParams ¶ms); void SetStaticCredit(ScriptMethodParams ¶ms); void GetStaticCredit(ScriptMethodParams ¶ms); void StartEndStaticCredits(ScriptMethodParams ¶ms); void GetCurrentStaticCredit(ScriptMethodParams ¶ms); void SetDefaultStaticDelay(ScriptMethodParams ¶ms); void SetStaticPause(ScriptMethodParams ¶ms); void SetStaticCreditTitle(ScriptMethodParams ¶ms); void ShowStaticCredit(ScriptMethodParams ¶ms); void StaticReset(ScriptMethodParams ¶ms); void GetStaticCreditTitle(ScriptMethodParams ¶ms); void SetStaticCreditImage(ScriptMethodParams ¶ms); void IsStaticCreditsFinished(ScriptMethodParams ¶ms); public: AGSCreditz1(); const char *AGS_GetPluginName() override; void AGS_EngineStartup(IAGSEngine *engine) override; int64 AGS_EngineOnEvent(int event, NumberPtr data) override; }; } // namespace AGSCreditz } // namespace Plugins } // namespace AGS3 #endif