67 lines
1.8 KiB
C
67 lines
1.8 KiB
C
|
#pragma once
|
||
|
#include "Common.h"
|
||
|
#include "Entity.h"
|
||
|
//#include "EntityManager.h"
|
||
|
//#include "Scene.h"
|
||
|
//#include "GameEngine.h" // can't - need forward declaration
|
||
|
//#include "ActionCode.h"
|
||
|
#include "Python.h"
|
||
|
|
||
|
class GameEngine; // forward declared (circular members)
|
||
|
|
||
|
class McRFPy_API
|
||
|
{
|
||
|
private:
|
||
|
static const int texture_size = 16, // w & h (pixels) of one sprite in the tex
|
||
|
texture_width = 12, texture_height = 11, // w & h sprite/frame count
|
||
|
texture_sprite_count = 11 * 12; // t_width * t_height, minus blanks?
|
||
|
|
||
|
// TODO: this is wrong, load resources @ GameEngineSprite sprite;
|
||
|
// sf::Texture texture;
|
||
|
|
||
|
//std::vector<PyMethodDef> mcrfpyMethodsVector;
|
||
|
//static PyObject* PyInit_mcrfpy();
|
||
|
|
||
|
McRFPy_API();
|
||
|
|
||
|
public:
|
||
|
inline static sf::Sprite sprite;
|
||
|
inline static sf::Texture texture;
|
||
|
static void setSpriteTexture(int);
|
||
|
inline static GameEngine* game;
|
||
|
static void api_init();
|
||
|
// Python API functionality - use mcrfpy.* in scripts
|
||
|
static PyObject* _drawSprite(PyObject*, PyObject*);
|
||
|
|
||
|
// McRFPy_API(GameEngine*);
|
||
|
|
||
|
// API functionality - use from C++ directly
|
||
|
|
||
|
//void spawnEntity(int tex_index, int grid_x, int grid_y, PyObject* script);
|
||
|
|
||
|
// test function, do not use in production
|
||
|
static void drawSprite(int tex_index, int grid_x, int grid_y);
|
||
|
|
||
|
static void executeScript(std::string);
|
||
|
static void executePyString(std::string);
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
static PyMethodDef mcrfpyMethods[] = {
|
||
|
{"drawSprite", McRFPy_API::_drawSprite, METH_VARARGS,
|
||
|
"Draw a sprite (index, x, y)"},
|
||
|
{NULL, NULL, 0, NULL}
|
||
|
};
|
||
|
|
||
|
static PyModuleDef mcrfpyModule = {
|
||
|
PyModuleDef_HEAD_INIT, "mcrfpy", NULL, -1, mcrfpyMethods,
|
||
|
NULL, NULL, NULL, NULL
|
||
|
};
|
||
|
|
||
|
// Module initializer fn, passed to PyImport_AppendInittab
|
||
|
PyObject* PyInit_mcrfpy()
|
||
|
{
|
||
|
return PyModule_Create(&mcrfpyModule);
|
||
|
}
|
||
|
*/
|