Emu vs Real!

This commit is contained in:
2026-02-05 08:43:49 -06:00
parent 5cf299a1c7
commit dd697d5650
5 changed files with 101 additions and 61 deletions

View File

@@ -45,42 +45,42 @@ errorret_t engineInit(const int32_t argc, const char_t **argv) {
errorChain(scriptContextInit(&ctx));
// errorChain(scriptContextExecFile(&ctx, "init.dsf"));
errorChain(scriptContextExec(&ctx,
"printf('Lua still working')"
// "module('platform')\n"
// "module('input')\n"
// "module('scene')\n"
// "module('locale')\n"
// "if PLATFORM == \"psp\" then\n"
// " inputBind(\"up\", INPUT_ACTION_UP)\n"
// " inputBind(\"down\", INPUT_ACTION_DOWN)\n"
// " inputBind(\"left\", INPUT_ACTION_LEFT)\n"
// " inputBind(\"right\", INPUT_ACTION_RIGHT)\n"
// " inputBind(\"circle\", INPUT_ACTION_CANCEL)\n"
// " inputBind(\"cross\", INPUT_ACTION_ACCEPT)\n"
// " inputBind(\"select\", INPUT_ACTION_RAGEQUIT)\n"
// " inputBind(\"lstick_up\", INPUT_ACTION_UP)\n"
// " inputBind(\"lstick_down\", INPUT_ACTION_DOWN)\n"
// " inputBind(\"lstick_left\", INPUT_ACTION_LEFT)\n"
// " inputBind(\"lstick_right\", INPUT_ACTION_RIGHT)\n"
// "else\n"
// " if INPUT_KEYBOARD then\n"
// " inputBind(\"w\", INPUT_ACTION_UP)\n"
// " inputBind(\"s\", INPUT_ACTION_DOWN)\n"
// " inputBind(\"a\", INPUT_ACTION_LEFT)\n"
// " inputBind(\"d\", INPUT_ACTION_RIGHT)\n"
// " inputBind(\"left\", INPUT_ACTION_LEFT)\n"
// " inputBind(\"right\", INPUT_ACTION_RIGHT)\n"
// " inputBind(\"up\", INPUT_ACTION_UP)\n"
// " inputBind(\"down\", INPUT_ACTION_DOWN)\n"
// " inputBind(\"enter\", INPUT_ACTION_ACCEPT)\n"
// " inputBind(\"e\", INPUT_ACTION_ACCEPT)\n"
// " inputBind(\"q\", INPUT_ACTION_CANCEL)\n"
// " inputBind(\"escape\", INPUT_ACTION_RAGEQUIT)\n"
// " end \n"
// "end\n"
errorChain(scriptContextExec(&ctx,
"module('platform')\n"
"module('input')\n"
"module('scene')\n"
"module('locale')\n"
"if PLATFORM == \"psp\" then\n"
" inputBind(\"up\", INPUT_ACTION_UP)\n"
" inputBind(\"down\", INPUT_ACTION_DOWN)\n"
" inputBind(\"left\", INPUT_ACTION_LEFT)\n"
" inputBind(\"right\", INPUT_ACTION_RIGHT)\n"
" inputBind(\"circle\", INPUT_ACTION_CANCEL)\n"
" inputBind(\"cross\", INPUT_ACTION_ACCEPT)\n"
" inputBind(\"select\", INPUT_ACTION_RAGEQUIT)\n"
" inputBind(\"lstick_up\", INPUT_ACTION_UP)\n"
" inputBind(\"lstick_down\", INPUT_ACTION_DOWN)\n"
" inputBind(\"lstick_left\", INPUT_ACTION_LEFT)\n"
" inputBind(\"lstick_right\", INPUT_ACTION_RIGHT)\n"
"else\n"
" if INPUT_KEYBOARD then\n"
" inputBind(\"w\", INPUT_ACTION_UP)\n"
" inputBind(\"s\", INPUT_ACTION_DOWN)\n"
" inputBind(\"a\", INPUT_ACTION_LEFT)\n"
" inputBind(\"d\", INPUT_ACTION_RIGHT)\n"
" inputBind(\"left\", INPUT_ACTION_LEFT)\n"
" inputBind(\"right\", INPUT_ACTION_RIGHT)\n"
" inputBind(\"up\", INPUT_ACTION_UP)\n"
" inputBind(\"down\", INPUT_ACTION_DOWN)\n"
" inputBind(\"enter\", INPUT_ACTION_ACCEPT)\n"
" inputBind(\"e\", INPUT_ACTION_ACCEPT)\n"
" inputBind(\"q\", INPUT_ACTION_CANCEL)\n"
" inputBind(\"escape\", INPUT_ACTION_RAGEQUIT)\n"
" end \n"
"end\n"
// "localeSet(DUSK_LOCALE_EN_US)\n"
// "print('Good here')"
"sceneSet('scene/initial.dsf')\n"
));
scriptContextDispose(&ctx);

View File

@@ -75,7 +75,31 @@ errorret_t sceneSet(const char_t *script) {
// Create a new script context.
errorChain(scriptContextInit(&SCENE.scriptContext));
errorChain(scriptContextExecFile(&SCENE.scriptContext, script));
// errorChain(scriptContextExecFile(&SCENE.scriptContext, script));
errorChain(scriptContextExec(&SCENE.scriptContext,
"module('spritebatch')\n"
"module('camera')\n"
"module('color')\n"
"module('text')\n"
"module('screen')\n"
"module('time')\n"
"module('map')\n"
"module('glm')\n"
"screenSetBackground(colorLime())\n"
"mapCamera = cameraCreate()\n"
"text = 'Hello World'\n"
"function sceneDispose()\n"
"end\n"
"function sceneUpdate()\n"
"end\n"
"function sceneRender()\n"
" mapCamera.position = vec3(4, 4, 4)\n"
" cameraPushMatrix(mapCamera)\n"
" spriteBatchPush(nil, -1, -1, 1, 1, colorBlue())\n"
" spriteBatchFlush()\n"
" cameraPopMatrix()\n"
"end\n"
));
errorOk();
}

View File

@@ -45,7 +45,7 @@ errorret_t scriptContextExec(scriptcontext_t *context, const char_t *script) {
if(luaL_dostring(context->luaState, script) != LUA_OK) {
const char_t *strErr = lua_tostring(context->luaState, -1);
lua_pop(context->luaState, 1);
errorThrow("Failed to execute Lua: ", strErr);
errorThrow("Failed to execute Lua: %s", strErr);
}
errorOk();