Merge branch 'add-squirrel' of https://github.com/GrahamClemo/TIC-80 into add-squirrel

This commit is contained in:
Graham Clemo 2018-08-04 14:24:19 +01:00
commit b4222fdb2a
10 changed files with 1641 additions and 1561 deletions

View File

@ -21,6 +21,7 @@ INCLUDES= \
-I$(3RD_PARTY)/wren-0.1.0/src/include \ -I$(3RD_PARTY)/wren-0.1.0/src/include \
-I$(3RD_PARTY)/moonscript \ -I$(3RD_PARTY)/moonscript \
-I$(3RD_PARTY)/fennel \ -I$(3RD_PARTY)/fennel \
-I$(3RD_PARTY)/squirrel3.1/include \
-I$(BLIPBUF_LIB) \ -I$(BLIPBUF_LIB) \
-I$(DUKTAPE_LIB) \ -I$(DUKTAPE_LIB) \
-I$(SDL_NET_LIB) \ -I$(SDL_NET_LIB) \
@ -48,6 +49,7 @@ LINUX_LIBS= \
-L$(3RD_PARTY)/wren-0.1.0/lib \ -L$(3RD_PARTY)/wren-0.1.0/lib \
-L$(3RD_PARTY)/sdl-gpu/build/linux \ -L$(3RD_PARTY)/sdl-gpu/build/linux \
-L$(3RD_PARTY)/lua-5.3.1/src \ -L$(3RD_PARTY)/lua-5.3.1/src \
-L$(3RD_PARTY)/squirrel3.1/lib \
-L$(3RD_PARTY)/SDL2-2.0.7/build/.libs -L$(3RD_PARTY)/SDL2-2.0.7/build/.libs
LINUX64_LIBS= \ LINUX64_LIBS= \
@ -66,6 +68,7 @@ LINUX_LINKER_LTO_FLAGS= \
-lsdlgpu \ -lsdlgpu \
-llua \ -llua \
-lwren \ -lwren \
-lsquirrel -lsqstdlib -lstdc++ \
-lgif \ -lgif \
-ldl \ -ldl \
-lm \ -lm \
@ -77,6 +80,7 @@ LINUX_LINKER_LTO_FLAGS= \
LINUX_LINKER_FLAGS= \ LINUX_LINKER_FLAGS= \
-llua \ -llua \
-lwren \ -lwren \
-lsquirrel -lsqstdlib -lstdc++ \
-ldl \ -ldl \
-lm \ -lm \
-lpthread \ -lpthread \
@ -103,6 +107,7 @@ EMS_LINKER_FLAGS= \
-L$(PRE_BUILT)/emscripten \ -L$(PRE_BUILT)/emscripten \
-llua \ -llua \
-lwren \ -lwren \
-lsquirrel \
-lgif \ -lgif \
-lz \ -lz \
-lsdlgpu -lsdlgpu
@ -176,6 +181,7 @@ DEMO_ASSETS= \
bin/assets/moondemo.tic.dat \ bin/assets/moondemo.tic.dat \
bin/assets/fenneldemo.tic.dat \ bin/assets/fenneldemo.tic.dat \
bin/assets/wrendemo.tic.dat \ bin/assets/wrendemo.tic.dat \
bin/assets/squirreldemo.tic.dat \
bin/assets/benchmark.tic.dat \ bin/assets/benchmark.tic.dat \
bin/assets/config.tic.dat bin/assets/config.tic.dat
@ -309,14 +315,17 @@ bin/jsapi.o: src/jsapi.c $(TIC80_H)
bin/luaapi.o: src/luaapi.c $(TIC80_H) bin/luaapi.o: src/luaapi.c $(TIC80_H)
$(CC) $< $(OPT) $(INCLUDES) -c -o $@ $(CC) $< $(OPT) $(INCLUDES) -c -o $@
bin/squirrelapi.o: src/squirrelapi.c $(TIC80_H)
$(CC) $< $(OPT) $(INCLUDES) -c -o $@
bin/wrenapi.o: src/wrenapi.c $(TIC80_H) bin/wrenapi.o: src/wrenapi.c $(TIC80_H)
$(CC) $< $(OPT) $(INCLUDES) -c -o $@ $(CC) $< $(OPT) $(INCLUDES) -c -o $@
bin/duktape.o: $(DUKTAPE_LIB)/duktape.c $(TIC80_H) bin/duktape.o: $(DUKTAPE_LIB)/duktape.c $(TIC80_H)
$(CC) $< $(OPT) $(INCLUDES) -c -o $@ $(CC) $< $(OPT) $(INCLUDES) -c -o $@
TIC80_SRC = src/tic80.c src/tic.c $(BLIP_SRC) src/jsapi.c src/luaapi.c src/wrenapi.c $(DUKTAPE_LIB)/duktape.c TIC80_SRC = src/tic80.c src/tic.c $(BLIP_SRC) src/jsapi.c src/luaapi.c src/wrenapi.c src/squirrelapi.c $(DUKTAPE_LIB)/duktape.c
TIC80_O = bin/tic80.o bin/tic.o bin/tools.o bin/blip_buf.o bin/jsapi.o bin/luaapi.o bin/wrenapi.o bin/duktape.o bin/gif.o TIC80_O = bin/squirrelapi.o bin/tic80.o bin/tic.o bin/tools.o bin/blip_buf.o bin/jsapi.o bin/luaapi.o bin/wrenapi.o bin/duktape.o bin/gif.o
TIC80_A = bin/libtic80.a TIC80_A = bin/libtic80.a
TIC80_DLL = bin/tic80.dll TIC80_DLL = bin/tic80.dll
@ -370,6 +379,7 @@ WREN_A=$(3RD_PARTY)/wren-0.1.0/lib/libwren.a
SDLGPU_A=$(3RD_PARTY)/sdl-gpu/build/linux/libsdlgpu.a SDLGPU_A=$(3RD_PARTY)/sdl-gpu/build/linux/libsdlgpu.a
LUA_A=$(3RD_PARTY)/lua-5.3.1/src/liblua.a LUA_A=$(3RD_PARTY)/lua-5.3.1/src/liblua.a
SDL2_A=$(3RD_PARTY)/SDL2-2.0.7/build/.libs/libSDL2.a SDL2_A=$(3RD_PARTY)/SDL2-2.0.7/build/.libs/libSDL2.a
SQUIRREL_A=$(3RD_PARTY)/squirrel3.1/lib/libsquirrel.a
$(WREN_A): $(WREN_A):
make static -C $(3RD_PARTY)/wren-0.1.0/ make static -C $(3RD_PARTY)/wren-0.1.0/
@ -383,7 +393,10 @@ $(LUA_A):
$(SDL2_A): $(SDL2_A):
cd $(3RD_PARTY)/SDL2-2.0.7/ && ./configure --enable-sndio=no && make && cd ../.. cd $(3RD_PARTY)/SDL2-2.0.7/ && ./configure --enable-sndio=no && make && cd ../..
linux: $(WREN_A) $(SDLGPU_A) $(LUA_A) $(SDL2_A) $(SQUIRREL_A):
cd $(3RD_PARTY)/squirrel3.1/ && make && cd ../..
linux: $(WREN_A) $(SDLGPU_A) $(LUA_A) $(SDL2_A) $(SQUIRREL_A)
$(CC) $(LINUX_INCLUDES) $(SOURCES) $(SYSTEM) $(LPEG_SRC) $(GIF_SRC) $(SOURCES_EXT) $(TIC80_SRC) $(OPT) $(INCLUDES) $(LINUX_LIBS) $(LINUX_LINKER_FLAGS) -o $(BIN_NAME) $(CC) $(LINUX_INCLUDES) $(SOURCES) $(SYSTEM) $(LPEG_SRC) $(GIF_SRC) $(SOURCES_EXT) $(TIC80_SRC) $(OPT) $(INCLUDES) $(LINUX_LIBS) $(LINUX_LINKER_FLAGS) -o $(BIN_NAME)
linux-pro: linux-pro:
@ -449,6 +462,9 @@ bin/assets/moondemo.tic.dat: demos/moondemo.tic
bin/assets/fenneldemo.tic.dat: demos/fenneldemo.tic bin/assets/fenneldemo.tic.dat: demos/fenneldemo.tic
$(BIN2TXT) $< $@ -z $(BIN2TXT) $< $@ -z
bin/assets/squirreldemo.tic.dat: demos/squirreldemo.tic
$(BIN2TXT) $< $@ -z
bin/assets/benchmark.tic.dat: demos/benchmark.tic bin/assets/benchmark.tic.dat: demos/benchmark.tic
$(BIN2TXT) $< $@ -z $(BIN2TXT) $< $@ -z

View File

@ -0,0 +1 @@
0x78, 0xda, 0x63, 0x5c, 0xc0, 0xc4, 0x40, 0x08, 0xfc, 0xfb, 0x0f, 0x04, 0x4a, 0x4a, 0x4a, 0xfd, 0x1d, 0x1d, 0x1d, 0xfd, 0x20, 0x1a, 0xc8, 0xed, 0xff, 0xff, 0x01, 0x8e, 0xff, 0xff, 0x7f, 0xff, 0x4e, 0x49, 0xe9, 0xff, 0xbb, 0x8e, 0x8e, 0x0f, 0xef, 0x94, 0x9a, 0x3e, 0xbc, 0xfb, 0xdf, 0xff, 0xe1, 0xff, 0x87, 0xfe, 0x0f, 0x1f, 0x60, 0x18, 0xbb, 0xfe, 0xff, 0x78, 0xf5, 0xff, 0x47, 0xd2, 0xcf, 0x30, 0x0a, 0x06, 0x14, 0x80, 0xe3, 0x0a, 0x14, 0x77, 0x60, 0xf8, 0x03, 0xcc, 0xd6, 0x07, 0xc6, 0xe3, 0x7f, 0x86, 0x0f, 0xff, 0x81, 0x71, 0xfb, 0xef, 0x7f, 0x3f, 0xc3, 0x7f, 0x60, 0xdc, 0xbd, 0xef, 0x07, 0xc6, 0x5f, 0x07, 0x14, 0x83, 0xe2, 0x93, 0xe1, 0xc3, 0xfb, 0x77, 0xff, 0xff, 0xbf, 0x7b, 0x47, 0xa9, 0x7e, 0x56, 0x1d, 0x46, 0x06, 0x7d, 0x7d, 0x85, 0x92, 0xcc, 0x92, 0x9c, 0x54, 0x2b, 0x05, 0x85, 0xf4, 0xc4, 0xdc, 0x54, 0x08, 0x87, 0x0b, 0x28, 0x9a, 0x58, 0x5a, 0x92, 0x91, 0x5f, 0x64, 0x05, 0x11, 0x4d, 0x49, 0x2d, 0x4b, 0xcd, 0xc9, 0x2f, 0x48, 0x2d, 0x02, 0xc9, 0xa4, 0xa4, 0x16, 0x27, 0x03, 0x95, 0x2b, 0x14, 0x03, 0xe5, 0x4b, 0xc0, 0xbc, 0xa2, 0xcc, 0x82, 0x92, 0xcc, 0xfc, 0x3c, 0x90, 0x24, 0x84, 0x63, 0xa5, 0x50, 0x5c, 0x58, 0x9a, 0x59, 0x54, 0x94, 0x9a, 0xc3, 0xc5, 0x55, 0x62, 0xa3, 0x6b, 0xc0, 0x55, 0x61, 0xa3, 0x6b, 0x69, 0xc6, 0x55, 0x69, 0xa3, 0x6b, 0x64, 0xc2, 0xc5, 0x95, 0x56, 0x9a, 0x97, 0x0c, 0x52, 0xaf, 0x10, 0xe2, 0xe9, 0xac, 0xa1, 0xc9, 0x55, 0xcd, 0xc5, 0x99, 0x99, 0xa6, 0xa0, 0x91, 0x54, 0x92, 0xa7, 0x61, 0xa0, 0xa9, 0xa9, 0x50, 0x69, 0x5b, 0xa9, 0x6b, 0x68, 0x8d, 0x10, 0x33, 0x84, 0x88, 0x69, 0x23, 0x8b, 0x19, 0x01, 0xc5, 0x2a, 0x6c, 0x2b, 0x50, 0xd4, 0x19, 0x43, 0xc4, 0x40, 0xea, 0xb8, 0x38, 0x93, 0x73, 0x8a, 0x35, 0x0c, 0x8d, 0x35, 0xb9, 0x38, 0x8b, 0x0b, 0x8a, 0x34, 0x0c, 0xb5, 0x35, 0x34, 0x4a, 0x54, 0xcd, 0x0c, 0x34, 0xf5, 0x8d, 0x0d, 0x34, 0xb5, 0x8c, 0x74, 0x2a, 0x74, 0x2a, 0x75, 0x0c, 0x4d, 0x74, 0x8c, 0x75, 0x0c, 0x80, 0xd0, 0x48, 0xc7, 0x08, 0xa8, 0xac, 0xa0, 0x28, 0x33, 0xaf, 0x44, 0x43, 0xc9, 0xc3, 0xd5, 0xc7, 0xc7, 0x5f, 0x21, 0xdc, 0x3f, 0xc8, 0xc7, 0x45, 0x51, 0x49, 0xc7, 0xc2, 0x04, 0x88, 0x80, 0x92, 0x25, 0xb6, 0x25, 0xda, 0x86, 0x5c, 0xb5, 0x5c, 0x9c, 0x76, 0x94, 0xc5, 0x37, 0x33, 0x0b, 0x97, 0x01, 0x84, 0x05, 0xca, 0xb8, 0x30, 0x5a, 0xc0, 0x28, 0xa4, 0x6c, 0xc6, 0xae, 0x3b, 0xff, 0xde, 0x9f, 0x5d, 0xdd, 0x99, 0xee, 0xaa, 0xcc, 0x08, 0xe3, 0xc3, 0x68, 0x1e, 0xa0, 0x1e, 0x11, 0x1e, 0x19, 0x17, 0x15, 0x13, 0x03, 0x93, 0x5c, 0x3f, 0x2f, 0xbf, 0x56, 0x1f, 0x03, 0x93, 0x54, 0x95, 0x0b, 0x6e, 0x1e, 0xa5, 0x85, 0x89, 0x91, 0xb5, 0xe7, 0x2e, 0xd5, 0xea, 0xb4, 0x4e, 0x5d, 0x98, 0xbb, 0x4a, 0xe7, 0xd2, 0xaa, 0x99, 0xb9, 0x87, 0x4e, 0xdd, 0xba, 0x12, 0x77, 0xef, 0xdd, 0x35, 0x00, 0x34, 0x53, 0x38, 0x01,

BIN
demos/squirreldemo.tic Normal file

Binary file not shown.

View File

@ -70,6 +70,10 @@ typedef enum
WrenScript, WrenScript,
#endif #endif
#if defined(TIC_BUILD_WITH_SQUIRREL)
Squirrel,
#endif
} ScriptLang; } ScriptLang;
#if defined(__TIC_WINDOWS__) || defined(__TIC_LINUX__) || defined(__TIC_MACOSX__) #if defined(__TIC_WINDOWS__) || defined(__TIC_LINUX__) || defined(__TIC_MACOSX__)
@ -115,6 +119,10 @@ static const char DefaultJSTicPath[] = TIC_LOCAL "default_js.tic";
static const char DefaultWrenTicPath[] = TIC_LOCAL "default_wren.tic"; static const char DefaultWrenTicPath[] = TIC_LOCAL "default_wren.tic";
#endif #endif
#if defined(TIC_BUILD_WITH_SQUIRREL)
static const char DefaultSquirrelTicPath[] = TIC_LOCAL "default_squirrel.tic";
#endif
static inline s32 BufferSize(const tic_mem* tic) static inline s32 BufferSize(const tic_mem* tic)
{ {
return BufferWidth(tic) * BufferHeight(tic) * CONSOLE_BUFFER_SCREENS; return BufferWidth(tic) * BufferHeight(tic) * CONSOLE_BUFFER_SCREENS;
@ -490,6 +498,9 @@ static void* getDemoCart(Console* console, ScriptLang script, s32* size)
#if defined(TIC_BUILD_WITH_WREN) #if defined(TIC_BUILD_WITH_WREN)
case WrenScript: strcpy(path, DefaultWrenTicPath); break; case WrenScript: strcpy(path, DefaultWrenTicPath); break;
#endif
#if defined(TIC_BUILD_WITH_SQUIRREL)
case Squirrel: strcpy(path, DefaultSquirrelTicPath); break;
#endif #endif
} }
@ -545,8 +556,22 @@ static void* getDemoCart(Console* console, ScriptLang script, s32* size)
break; break;
# endif # endif
#endif /* defined(TIC_BUILD_WITH_LUA) */ #endif /* defined(TIC_BUILD_WITH_LUA) */
#if defined(TIC_BUILD_WITH_SQUIRREL)
case Squirrel:
{
static const u8 SquirrelDemoRom[] =
{
#include "../bin/assets/squirreldemo.tic.dat"
};
demo = SquirrelDemoRom;
romSize = sizeof SquirrelDemoRom;
}
break;
#endif
#if defined(TIC_BUILD_WITH_JS) #if defined(TIC_BUILD_WITH_JS)
case JavaScript: case JavaScript:
@ -627,6 +652,10 @@ static void onConsoleLoadDemoCommandConfirmed(Console* console, const char* para
data = getDemoCart(console, WrenScript, &size); data = getDemoCart(console, WrenScript, &size);
#endif #endif
#if defined(TIC_BUILD_WITH_SQUIRREL)
if(strcmp(param, DefaultSquirrelTicPath) == 0)
data = getDemoCart(console, Squirrel, &size);
#endif
const char* name = getCartName(param); const char* name = getCartName(param);
setCartName(console, name); setCartName(console, name);
@ -665,12 +694,12 @@ static bool hasExt(const char* name, const char* ext)
static bool hasProjectExt(const char* name) static bool hasProjectExt(const char* name)
{ {
return hasExt(name, PROJECT_LUA_EXT) || hasExt(name, PROJECT_MOON_EXT) || hasExt(name, PROJECT_JS_EXT) || hasExt(name, PROJECT_WREN_EXT); return hasExt(name, PROJECT_LUA_EXT) || hasExt(name, PROJECT_MOON_EXT) || hasExt(name, PROJECT_JS_EXT) || hasExt(name, PROJECT_WREN_EXT) || hasExt(name, PROJECT_SQUIRREL_EXT);
} }
static const char* projectComment(const char* name) static const char* projectComment(const char* name)
{ {
return hasExt(name, PROJECT_JS_EXT) || hasExt(name, PROJECT_WREN_EXT) ? "//" : "--"; return (hasExt(name, PROJECT_SQUIRREL_EXT) || hasExt(name, PROJECT_JS_EXT) || hasExt(name, PROJECT_WREN_EXT)) ? "//" : "--";
} }
static void buf2str(const void* data, s32 size, char* ptr, bool flip) static void buf2str(const void* data, s32 size, char* ptr, bool flip)
@ -1058,7 +1087,10 @@ static void onConsoleLoadCommandConfirmed(Console* console, const char* param)
if(!fsExistsFile(console->fs, name)) if(!fsExistsFile(console->fs, name))
name = getName(param, PROJECT_WREN_EXT); name = getName(param, PROJECT_WREN_EXT);
void* data = fsLoadFile(console->fs, name, &size); if(!fsExistsFile(console->fs, name))
name = getName(param, PROJECT_SQUIRREL_EXT);
void* data = fsLoadFile(console->fs, name, &size);
if(data) if(data)
{ {
@ -1223,7 +1255,15 @@ static void onConsoleNewCommandConfirmed(Console* console, const char* param)
} }
#endif #endif
if(!done) #if defined(TIC_BUILD_WITH_SQUIRREL)
if(strcmp(param, "squirrel") == 0)
{
loadDemo(console, Squirrel);
done = true;
}
#endif
if(!done)
{ {
printError(console, "\nunknown parameter: "); printError(console, "\nunknown parameter: ");
printError(console, param); printError(console, param);
@ -1506,6 +1546,7 @@ static void onConsoleConfigCommand(Console* console, const char* param)
} }
# endif # endif
#endif /* defined(TIC_BUILD_WITH_LUA) */ #endif /* defined(TIC_BUILD_WITH_LUA) */
#if defined(TIC_BUILD_WITH_JS) #if defined(TIC_BUILD_WITH_JS)
@ -1521,7 +1562,14 @@ static void onConsoleConfigCommand(Console* console, const char* param)
onConsoleLoadDemoCommand(console, DefaultWrenTicPath); onConsoleLoadDemoCommand(console, DefaultWrenTicPath);
} }
#endif #endif
#if defined(TIC_BUILD_WITH_SQUIRREL)
else if(strcmp(param, "default squirrel") == 0)
{
onConsoleLoadDemoCommand(console, DefaultSquirrelTicPath);
}
#endif
else else
{ {
printError(console, "\nunknown parameter: "); printError(console, "\nunknown parameter: ");
@ -2851,6 +2899,8 @@ static void tick(Console* console)
loadDemo(console, JavaScript); loadDemo(console, JavaScript);
#elif defined(TIC_BUILD_WITH_WREN) #elif defined(TIC_BUILD_WITH_WREN)
loadDemo(console, WrenScript); loadDemo(console, WrenScript);
#elif defined(TIC_BUILD_WITH_SQUIRREL)
loadDemo(console, Squirrel);
#endif #endif
printBack(console, "\n hello! type "); printBack(console, "\n hello! type ");

File diff suppressed because it is too large Load Diff

View File

@ -56,6 +56,7 @@
#define PROJECT_MOON_EXT ".moon" #define PROJECT_MOON_EXT ".moon"
#define PROJECT_JS_EXT ".js" #define PROJECT_JS_EXT ".js"
#define PROJECT_WREN_EXT ".wren" #define PROJECT_WREN_EXT ".wren"
#define PROJECT_SQUIRREL_EXT ".nut"
typedef enum typedef enum
{ {