- v0.9.01

- [NEW] version numbers
- debug() is now an alias of printf
This commit is contained in:
2022-11-02 13:48:53 +01:00
parent 1a732d7c71
commit 6cfc6b0438
4 changed files with 16 additions and 13 deletions

View File

@@ -915,14 +915,14 @@ void lua_init(char* filenames) {
char* buffer = file_getfilebuffer(file_start, size);
if (luaL_loadbuffer(L, buffer, size, file_start)) {
debug("LOADING ERROR: ");
debug(lua_tostring(L, -1));
debug("%s\n",lua_tostring(L, -1));
lua_pop(L,1);
return;
}
free(buffer);
if (lua_pcall(L,0, LUA_MULTRET, 0)) {
debug("RUNTIME ERROR: ");
debug(lua_tostring(L, -1));
debug("%s\n",lua_tostring(L, -1));
lua_pop(L,1);
return;
}
@@ -946,7 +946,7 @@ void lua_call_init() {
lua_getglobal(L, "_init");
if (lua_pcall(L, 0, 0, 0)) {
debug("RUNTIME ERROR: ");
debug(lua_tostring(L, -1));
debug("%s\n",lua_tostring(L, -1));
lua_pop(L,1);
is_playing = false;
}
@@ -957,7 +957,7 @@ void lua_call_update() {
lua_getglobal(L, "_update");
if (lua_pcall(L, 0, 0, 0)) {
debug("RUNTIME ERROR: ");
debug(lua_tostring(L, -1));
debug("%s\n",lua_tostring(L, -1));
lua_pop(L,1);
is_playing = false;
}

View File

@@ -211,7 +211,7 @@ int main(int argc,char*argv[]){
reinit();
initaudio();
debug("MINI SYSTEM BOOTING...");
debug("MINI v%s\n",MINI_VERSION);
lua_init(lua_files);
lua_call_init();
@@ -904,9 +904,9 @@ const char* tostr(int val) {
return SDL_itoa(val, tostr_tmp, 10);
}
void debug(const char *str) {
/*void debug(const char *str) {
printf("%s\n",str);
}
}*/
uint8_t ascii(const char *str, uint8_t index) {
return str[index];

5
mini.h
View File

@@ -2,6 +2,8 @@
#include <SDL2/SDL.h>
#define MINI_VERSION "0.9.01d"
#define KEY_UNKNOWN 0
#define KEY_A 4
#define KEY_B 5
@@ -232,7 +234,8 @@ int rnd(int x);
const char* tostr(int val);
void debug(const char *str);
//void debug(const char *str);
#define debug printf
uint8_t ascii(const char *str, uint8_t index);

View File

@@ -1,2 +1,2 @@
g++ *.cpp ./lua/*.c -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -lmingw32 -lSDL2main -lSDL2 -mwindows -o mini.exe
g++ *.cpp ./lua/*.c -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -lmingw32 -lSDL2main -lSDL2 -o mini.exe
strip -s -R .comment -R .gnu.version --strip-unneeded mini.exe