mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-20 21:43:50 +00:00
ec8b420abc
- Rename ScriptEngine, ScriptContext, ScriptInterface, ScriptRequest to
Script::Engine, Script::Context, Script::Interface, Script::Request
- Remove 'Script' prefix from filenames:
ScriptContext.* → Context.*
ScriptInterface.* → Interface.*
ScriptRequest.* → Request.*
ScriptEngine.* → Engine.*
ScriptConversions.* → Conversions.*
ScriptExceptions.* → Exceptions.*
ScriptForward.* → ForwardDeclarations.*
ScriptStats.* → Stats.*
- Update all includes, forward declarations, and friend classes
- Use namespace Script { ... } in .cpp definitions to avoid repetitive
Script:: prefix (keeping global callbacks outside)
- Rename internal implementation structs:
ScriptInterface_impl → Interface_impl
ScriptFunction → Function
- Update copyright year to 2026 in all touched files
- Suppress pre-existing cppcheck warnings (uninitvar, nullPointer, unknown
macro) by adding them to suppressions-list.txt (these are not caused
by this refactor)
Fixes #7516
93 lines
3.2 KiB
C++
93 lines
3.2 KiB
C++
/* Copyright (C) 2026 Wildfire Games.
|
|
* This file is part of 0 A.D.
|
|
*
|
|
* 0 A.D. 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 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 0 A.D. 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 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "precompiled.h"
|
|
|
|
#include "JSInterface_GUIProxy.h"
|
|
#include "JSInterface_GUIProxy_impl.h"
|
|
|
|
#include "gui/ObjectBases/IGUIObject.h"
|
|
#include "gui/ObjectTypes/CButton.h"
|
|
#include "gui/ObjectTypes/CDropDown.h"
|
|
#include "gui/ObjectTypes/CList.h"
|
|
#include "gui/ObjectTypes/CMiniMap.h"
|
|
#include "gui/ObjectTypes/CScrollPanel.h"
|
|
#include "gui/ObjectTypes/CText.h"
|
|
|
|
#include <string>
|
|
|
|
class CGUIString;
|
|
namespace Script { class Request; }
|
|
|
|
// Called for every specialization - adds the common interface.
|
|
template<>
|
|
void JSI_GUIProxy<IGUIObject>::CreateFunctions(const Script::Request& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&IGUIObject::GetName>(rq, cache, "toString");
|
|
CreateFunction<&IGUIObject::GetName>(rq, cache, "toSource");
|
|
CreateFunction<&IGUIObject::SetFocus>(rq, cache, "focus");
|
|
CreateFunction<&IGUIObject::ReleaseFocus>(rq, cache, "blur");
|
|
CreateFunction<&IGUIObject::GetActualSize>(rq, cache, "getComputedSize");
|
|
}
|
|
DECLARE_GUIPROXY(IGUIObject);
|
|
|
|
// Implement derived types below.
|
|
|
|
// CButton
|
|
template<> void JSI_GUIProxy<CButton>::CreateFunctions(const Script::Request& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&CButton::GetTextSize>(rq, cache, "getTextSize");
|
|
CreateFunction<&CButton::GetPreferredTextSize>(rq, cache, "getPreferredTextSize");
|
|
}
|
|
DECLARE_GUIPROXY(CButton);
|
|
|
|
// CText
|
|
template<> void JSI_GUIProxy<CText>::CreateFunctions(const Script::Request& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&CText::GetTextSize>(rq, cache, "getTextSize");
|
|
CreateFunction<&CText::GetPreferredTextSize>(rq, cache, "getPreferredTextSize");
|
|
}
|
|
DECLARE_GUIPROXY(CText);
|
|
|
|
// CList
|
|
template<> void JSI_GUIProxy<CList>::CreateFunctions(const Script::Request& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<static_cast<void(CList::*)(const CGUIString&)>(&CList::AddItem)>(rq, cache, "addItem");
|
|
}
|
|
DECLARE_GUIPROXY(CList);
|
|
|
|
// CDropDown
|
|
template<> void JSI_GUIProxy<CDropDown>::CreateFunctions(const Script::Request& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&CDropDown::GetPreferredHeaderTextSize>(rq, cache, "getPreferredHeaderTextSize");
|
|
}
|
|
DECLARE_GUIPROXY(CDropDown);
|
|
|
|
// CMiniMap
|
|
template<> void JSI_GUIProxy<CMiniMap>::CreateFunctions(const Script::Request& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&CMiniMap::Flare>(rq, cache, "flare");
|
|
}
|
|
DECLARE_GUIPROXY(CMiniMap);
|
|
|
|
// CScrollPanel
|
|
template<> void JSI_GUIProxy<CScrollPanel>::CreateFunctions(const Script::Request& rq, GUIProxyProps* cache)
|
|
{
|
|
CreateFunction<&CScrollPanel::ResetScrollPosition>(rq, cache, "resetScrollPosition");
|
|
}
|
|
DECLARE_GUIPROXY(CScrollPanel);
|