closes #4 commit8f060dc87bAuthor: John McCardle <mccardle.john@gmail.com> Date: Fri Mar 15 22:20:03 2024 -0400 Removing std::cout debugging statements commitc9d5251c71Author: John McCardle <mccardle.john@gmail.com> Date: Fri Mar 15 20:00:57 2024 -0400 In-place map modification worked commit0a8f67e391Author: John McCardle <mccardle.john@gmail.com> Date: Thu Mar 14 23:13:13 2024 -0400 Stress test is failing: By removing a timer to a function (from inside that function?) I can immediately cause a segfault. commit05d9f6a882Author: John McCardle <mccardle.john@gmail.com> Date: Tue Mar 12 22:27:12 2024 -0400 wow, good test of Key and Click Callable classes. Cleanup, squash, and merge after I give it a lookover in daylight, though. commit972768eb26Author: John McCardle <mccardle.john@gmail.com> Date: Tue Mar 12 21:02:48 2024 -0400 inital PyCallable work; isolate very well behaved usage of PyObject references behind RAII
66 lines
1.4 KiB
C++
66 lines
1.4 KiB
C++
#include "Scene.h"
|
|
#include "UI.h"
|
|
|
|
//Scene::Scene() { game = 0; std::cout << "WARN: default Scene constructor called. (game = " << game << ")" << std::endl;};
|
|
Scene::Scene(GameEngine* g)
|
|
{
|
|
key_callable = std::make_unique<PyKeyCallable>();
|
|
game = g;
|
|
ui_elements = std::make_shared<std::vector<std::shared_ptr<UIDrawable>>>();
|
|
}
|
|
void Scene::registerAction(int code, std::string name)
|
|
{
|
|
actions[code] = name;
|
|
actionState[name] = false;
|
|
}
|
|
bool Scene::hasAction(std::string name)
|
|
{
|
|
for (auto& item : actions)
|
|
if (item.second == name) return true;
|
|
return false;
|
|
}
|
|
|
|
bool Scene::hasAction(int code)
|
|
{
|
|
return (actions.find(code) != actions.end());
|
|
}
|
|
|
|
std::string Scene::action(int code)
|
|
{
|
|
return actions[code];
|
|
}
|
|
|
|
bool Scene::registerActionInjected(int code, std::string name)
|
|
{
|
|
std::cout << "Inject registered action - default implementation\n";
|
|
return false;
|
|
}
|
|
|
|
bool Scene::unregisterActionInjected(int code, std::string name)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void Scene::key_register(PyObject* callable)
|
|
{
|
|
/*
|
|
if (key_callable)
|
|
{
|
|
// decrement reference before overwriting
|
|
Py_DECREF(key_callable);
|
|
}
|
|
key_callable = callable;
|
|
Py_INCREF(key_callable);
|
|
*/
|
|
key_callable = std::make_unique<PyKeyCallable>(callable);
|
|
}
|
|
|
|
void Scene::key_unregister()
|
|
{
|
|
/*
|
|
if (key_callable == NULL) return;
|
|
Py_DECREF(key_callable);
|
|
key_callable = NULL;
|
|
*/
|
|
key_callable.reset();
|
|
}
|