├── .gitignore ├── AUTHORS ├── COMPILING ├── LICENSE ├── Makefile ├── README ├── darwin.sh ├── data.c ├── data.h ├── environ.sh ├── loopfinder.c ├── openbor.c ├── openbor.h ├── openborscript.c ├── openborscript.h ├── resources ├── BOR_Menu_Font_1.gif ├── BOR_Menu_Font_2.gif ├── BOR_Menu_Font_3.gif ├── Info.plist ├── LogViewer_320x240.gif ├── OpenBOR.icns ├── OpenBOR.res ├── OpenBOR_Icon_128x128.h ├── OpenBOR_Icon_128x128.png ├── OpenBOR_Icon_128x48.png ├── OpenBOR_Icon_144x80.png ├── OpenBOR_Icon_32x32.h ├── OpenBOR_Icon_32x32.ico ├── OpenBOR_Icon_32x32_png.h ├── OpenBOR_Menu_320x240.h ├── OpenBOR_Menu_320x240.png ├── OpenBOR_Menu_320x240_Consoles.png ├── OpenBOR_Menu_320x240_Sony.png ├── OpenBOR_Menu_320x240_png.h ├── OpenBOR_Menu_480x272.h ├── OpenBOR_Menu_480x272.png ├── OpenBOR_Menu_480x272_Consoles.png ├── OpenBOR_Menu_480x272_Sony.png ├── OpenBOR_Menu_480x272_png.h ├── PSP Readme.txt ├── PkgInfo ├── makeheader.pl └── meta.xml ├── sdl ├── control.c ├── control.h ├── hankaku.h ├── joysticks.c ├── joysticks.h ├── loadgl.c ├── loadgl.h ├── menu.c ├── menu.h ├── opengl.c ├── opengl.h ├── sblaster.c ├── sblaster.h ├── sdlport.c ├── sdlport.h ├── timer.c ├── vga.h ├── video.c └── video.h ├── source ├── adpcmlib │ ├── adpcm.c │ └── adpcm.h ├── debug.h ├── gamelib │ ├── anigif.c │ ├── anigif.h │ ├── bitmap.c │ ├── bitmap.h │ ├── borendian.h │ ├── commands.c │ ├── commands.h │ ├── draw.c │ ├── draw.h │ ├── draw16.c │ ├── draw32.c │ ├── filecache.c │ ├── filecache.h │ ├── filters.c │ ├── filters.h │ ├── font.c │ ├── font.h │ ├── loadimg.c │ ├── loadimg.h │ ├── menus.c │ ├── menus.h │ ├── models.c │ ├── models.h │ ├── movie.c │ ├── movie.h │ ├── packfile.c │ ├── packfile.h │ ├── palette.c │ ├── palette.h │ ├── pixelformat.c │ ├── screen.c │ ├── screen.h │ ├── screen16.c │ ├── screen32.c │ ├── soundmix.c │ ├── soundmix.h │ ├── sprite.c │ ├── sprite.h │ ├── spritef.c │ ├── spriteq.c │ ├── spriteq.h │ ├── spritex8p16.c │ ├── spritex8p32.c │ ├── ssprite.c │ ├── ssprite.h │ ├── texture.c │ ├── texture.h │ ├── texture16.c │ ├── texture32.c │ ├── timer.h │ └── types.h ├── gfxlib │ ├── 2xSaI.c │ ├── 2xSaImmx.asm │ ├── bilinear.c │ ├── bilinearmmx.asm │ ├── dotmatrix.c │ ├── gfx.c │ ├── gfx.h │ ├── gfxtypes.h │ ├── hq2x.c │ ├── hq2x.h │ ├── hq2x16mmx.asm │ ├── interp.h │ ├── lq2x.h │ ├── macros.mac │ ├── motionblur.c │ ├── scale2x.c │ ├── scanline.c │ ├── simple2x.c │ └── tv2x.c ├── globals.h ├── pnglib │ ├── pngdec.c │ ├── pngdec.h │ ├── savepng.c │ └── savepng.h ├── preprocessorlib │ ├── README │ ├── pp_lexer.c │ ├── pp_lexer.h │ ├── pp_parser.c │ ├── pp_parser.h │ └── test │ │ ├── build.sh │ │ ├── pp_test.c │ │ └── tmp.c ├── randlib │ ├── rand32.c │ └── rand32.h ├── scriptlib │ ├── FirstFollow.h │ ├── ImportCache.c │ ├── ImportCache.h │ ├── Instruction.c │ ├── Instruction.h │ ├── Interpreter.c │ ├── Interpreter.h │ ├── Lexer.c │ ├── Lexer.h │ ├── List.c │ ├── List.h │ ├── List_unittest.c │ ├── Parser.c │ ├── Parser.h │ ├── ParserSet.c │ ├── ParserSet.h │ ├── Productions.h │ ├── ScriptVariant.c │ ├── ScriptVariant.h │ ├── SolidList.c │ ├── SolidList.h │ ├── Stack.c │ ├── Stack.h │ ├── StackedSymbolTable.c │ ├── StackedSymbolTable.h │ ├── SymbolTable.c │ ├── SymbolTable.h │ └── depends.h ├── stringptr.c ├── stringptr.h ├── stristr.c ├── stristr.h ├── strswitch │ └── stringswitch.h ├── tracelib │ ├── tracemalloc.c │ └── tracemalloc.h ├── tracelib2 │ ├── tracelib2.c │ ├── tracelib2.h │ └── tracelib2_test.c ├── utils.c └── utils.h ├── stringswitch_impl_lcm_cmdaimove.c ├── stringswitch_impl_lcm_cmdanim.c ├── stringswitch_impl_lcm_cmdcandamage.c ├── stringswitch_impl_lcm_cmdcom.c ├── stringswitch_impl_lcm_cmdhostile.c ├── stringswitch_impl_lcm_cmdprojectilehit.c ├── stringswitch_impl_lcm_cmdsubtype.c ├── stringswitch_impl_lcm_cmdtype.c ├── stringswitch_impl_menutxt_cmd.c ├── tools ├── bor2wav │ └── bor2wav.c ├── borpak │ ├── COMPILING.txt │ ├── borpak.c │ ├── build-linux.sh │ ├── build-windows.bat │ ├── build-windows.sh │ ├── scandir.c │ ├── scandir.h │ ├── stristr.c │ └── stristr.h ├── borplay │ ├── adpcm.c │ ├── adpcm.h │ ├── ao.h │ ├── borplay.c │ ├── build-linux.sh │ ├── build-windows.sh │ ├── kbhit.c │ ├── kbhit.h │ ├── listmusic.py │ ├── mylibaow32.c │ ├── os_types.h │ ├── packlib.py │ ├── stristr.c │ └── stristr.h ├── checkunused.pl ├── pack.sh ├── replacefilelinks.pl ├── soundconv │ ├── bor2ogg.pl │ ├── complete_convert.sh │ ├── convertsound.pl │ ├── convertsoundlinks.pl │ ├── mp32wav.sh │ ├── wav2mp3.sh │ ├── wav2ogg-stereo.sh │ └── wav2ogg.sh └── unpack.sh ├── version.h └── version.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/AUTHORS -------------------------------------------------------------------------------- /COMPILING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/COMPILING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/README -------------------------------------------------------------------------------- /darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/darwin.sh -------------------------------------------------------------------------------- /data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/data.c -------------------------------------------------------------------------------- /data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/data.h -------------------------------------------------------------------------------- /environ.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/environ.sh -------------------------------------------------------------------------------- /loopfinder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/loopfinder.c -------------------------------------------------------------------------------- /openbor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/openbor.c -------------------------------------------------------------------------------- /openbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/openbor.h -------------------------------------------------------------------------------- /openborscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/openborscript.c -------------------------------------------------------------------------------- /openborscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/openborscript.h -------------------------------------------------------------------------------- /resources/BOR_Menu_Font_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/BOR_Menu_Font_1.gif -------------------------------------------------------------------------------- /resources/BOR_Menu_Font_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/BOR_Menu_Font_2.gif -------------------------------------------------------------------------------- /resources/BOR_Menu_Font_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/BOR_Menu_Font_3.gif -------------------------------------------------------------------------------- /resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/Info.plist -------------------------------------------------------------------------------- /resources/LogViewer_320x240.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/LogViewer_320x240.gif -------------------------------------------------------------------------------- /resources/OpenBOR.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR.icns -------------------------------------------------------------------------------- /resources/OpenBOR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR.res -------------------------------------------------------------------------------- /resources/OpenBOR_Icon_128x128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Icon_128x128.h -------------------------------------------------------------------------------- /resources/OpenBOR_Icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Icon_128x128.png -------------------------------------------------------------------------------- /resources/OpenBOR_Icon_128x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Icon_128x48.png -------------------------------------------------------------------------------- /resources/OpenBOR_Icon_144x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Icon_144x80.png -------------------------------------------------------------------------------- /resources/OpenBOR_Icon_32x32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Icon_32x32.h -------------------------------------------------------------------------------- /resources/OpenBOR_Icon_32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Icon_32x32.ico -------------------------------------------------------------------------------- /resources/OpenBOR_Icon_32x32_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Icon_32x32_png.h -------------------------------------------------------------------------------- /resources/OpenBOR_Menu_320x240.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Menu_320x240.h -------------------------------------------------------------------------------- /resources/OpenBOR_Menu_320x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Menu_320x240.png -------------------------------------------------------------------------------- /resources/OpenBOR_Menu_320x240_Consoles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Menu_320x240_Consoles.png -------------------------------------------------------------------------------- /resources/OpenBOR_Menu_320x240_Sony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Menu_320x240_Sony.png -------------------------------------------------------------------------------- /resources/OpenBOR_Menu_320x240_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Menu_320x240_png.h -------------------------------------------------------------------------------- /resources/OpenBOR_Menu_480x272.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Menu_480x272.h -------------------------------------------------------------------------------- /resources/OpenBOR_Menu_480x272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Menu_480x272.png -------------------------------------------------------------------------------- /resources/OpenBOR_Menu_480x272_Consoles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Menu_480x272_Consoles.png -------------------------------------------------------------------------------- /resources/OpenBOR_Menu_480x272_Sony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Menu_480x272_Sony.png -------------------------------------------------------------------------------- /resources/OpenBOR_Menu_480x272_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/OpenBOR_Menu_480x272_png.h -------------------------------------------------------------------------------- /resources/PSP Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/PSP Readme.txt -------------------------------------------------------------------------------- /resources/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLOBOR 2 | -------------------------------------------------------------------------------- /resources/makeheader.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/makeheader.pl -------------------------------------------------------------------------------- /resources/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/resources/meta.xml -------------------------------------------------------------------------------- /sdl/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/control.c -------------------------------------------------------------------------------- /sdl/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/control.h -------------------------------------------------------------------------------- /sdl/hankaku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/hankaku.h -------------------------------------------------------------------------------- /sdl/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/joysticks.c -------------------------------------------------------------------------------- /sdl/joysticks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/joysticks.h -------------------------------------------------------------------------------- /sdl/loadgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/loadgl.c -------------------------------------------------------------------------------- /sdl/loadgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/loadgl.h -------------------------------------------------------------------------------- /sdl/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/menu.c -------------------------------------------------------------------------------- /sdl/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/menu.h -------------------------------------------------------------------------------- /sdl/opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/opengl.c -------------------------------------------------------------------------------- /sdl/opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/opengl.h -------------------------------------------------------------------------------- /sdl/sblaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/sblaster.c -------------------------------------------------------------------------------- /sdl/sblaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/sblaster.h -------------------------------------------------------------------------------- /sdl/sdlport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/sdlport.c -------------------------------------------------------------------------------- /sdl/sdlport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/sdlport.h -------------------------------------------------------------------------------- /sdl/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/timer.c -------------------------------------------------------------------------------- /sdl/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/vga.h -------------------------------------------------------------------------------- /sdl/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/video.c -------------------------------------------------------------------------------- /sdl/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/sdl/video.h -------------------------------------------------------------------------------- /source/adpcmlib/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/adpcmlib/adpcm.c -------------------------------------------------------------------------------- /source/adpcmlib/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/adpcmlib/adpcm.h -------------------------------------------------------------------------------- /source/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/debug.h -------------------------------------------------------------------------------- /source/gamelib/anigif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/anigif.c -------------------------------------------------------------------------------- /source/gamelib/anigif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/anigif.h -------------------------------------------------------------------------------- /source/gamelib/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/bitmap.c -------------------------------------------------------------------------------- /source/gamelib/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/bitmap.h -------------------------------------------------------------------------------- /source/gamelib/borendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/borendian.h -------------------------------------------------------------------------------- /source/gamelib/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/commands.c -------------------------------------------------------------------------------- /source/gamelib/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/commands.h -------------------------------------------------------------------------------- /source/gamelib/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/draw.c -------------------------------------------------------------------------------- /source/gamelib/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/draw.h -------------------------------------------------------------------------------- /source/gamelib/draw16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/draw16.c -------------------------------------------------------------------------------- /source/gamelib/draw32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/draw32.c -------------------------------------------------------------------------------- /source/gamelib/filecache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/filecache.c -------------------------------------------------------------------------------- /source/gamelib/filecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/filecache.h -------------------------------------------------------------------------------- /source/gamelib/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/filters.c -------------------------------------------------------------------------------- /source/gamelib/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/filters.h -------------------------------------------------------------------------------- /source/gamelib/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/font.c -------------------------------------------------------------------------------- /source/gamelib/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/font.h -------------------------------------------------------------------------------- /source/gamelib/loadimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/loadimg.c -------------------------------------------------------------------------------- /source/gamelib/loadimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/loadimg.h -------------------------------------------------------------------------------- /source/gamelib/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/menus.c -------------------------------------------------------------------------------- /source/gamelib/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/menus.h -------------------------------------------------------------------------------- /source/gamelib/models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/models.c -------------------------------------------------------------------------------- /source/gamelib/models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/models.h -------------------------------------------------------------------------------- /source/gamelib/movie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/movie.c -------------------------------------------------------------------------------- /source/gamelib/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/movie.h -------------------------------------------------------------------------------- /source/gamelib/packfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/packfile.c -------------------------------------------------------------------------------- /source/gamelib/packfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/packfile.h -------------------------------------------------------------------------------- /source/gamelib/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/palette.c -------------------------------------------------------------------------------- /source/gamelib/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/palette.h -------------------------------------------------------------------------------- /source/gamelib/pixelformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/pixelformat.c -------------------------------------------------------------------------------- /source/gamelib/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/screen.c -------------------------------------------------------------------------------- /source/gamelib/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/screen.h -------------------------------------------------------------------------------- /source/gamelib/screen16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/screen16.c -------------------------------------------------------------------------------- /source/gamelib/screen32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/screen32.c -------------------------------------------------------------------------------- /source/gamelib/soundmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/soundmix.c -------------------------------------------------------------------------------- /source/gamelib/soundmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/soundmix.h -------------------------------------------------------------------------------- /source/gamelib/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/sprite.c -------------------------------------------------------------------------------- /source/gamelib/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/sprite.h -------------------------------------------------------------------------------- /source/gamelib/spritef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/spritef.c -------------------------------------------------------------------------------- /source/gamelib/spriteq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/spriteq.c -------------------------------------------------------------------------------- /source/gamelib/spriteq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/spriteq.h -------------------------------------------------------------------------------- /source/gamelib/spritex8p16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/spritex8p16.c -------------------------------------------------------------------------------- /source/gamelib/spritex8p32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/spritex8p32.c -------------------------------------------------------------------------------- /source/gamelib/ssprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/ssprite.c -------------------------------------------------------------------------------- /source/gamelib/ssprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/ssprite.h -------------------------------------------------------------------------------- /source/gamelib/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/texture.c -------------------------------------------------------------------------------- /source/gamelib/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/texture.h -------------------------------------------------------------------------------- /source/gamelib/texture16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/texture16.c -------------------------------------------------------------------------------- /source/gamelib/texture32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/texture32.c -------------------------------------------------------------------------------- /source/gamelib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/timer.h -------------------------------------------------------------------------------- /source/gamelib/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gamelib/types.h -------------------------------------------------------------------------------- /source/gfxlib/2xSaI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/2xSaI.c -------------------------------------------------------------------------------- /source/gfxlib/2xSaImmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/2xSaImmx.asm -------------------------------------------------------------------------------- /source/gfxlib/bilinear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/bilinear.c -------------------------------------------------------------------------------- /source/gfxlib/bilinearmmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/bilinearmmx.asm -------------------------------------------------------------------------------- /source/gfxlib/dotmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/dotmatrix.c -------------------------------------------------------------------------------- /source/gfxlib/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/gfx.c -------------------------------------------------------------------------------- /source/gfxlib/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/gfx.h -------------------------------------------------------------------------------- /source/gfxlib/gfxtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/gfxtypes.h -------------------------------------------------------------------------------- /source/gfxlib/hq2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/hq2x.c -------------------------------------------------------------------------------- /source/gfxlib/hq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/hq2x.h -------------------------------------------------------------------------------- /source/gfxlib/hq2x16mmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/hq2x16mmx.asm -------------------------------------------------------------------------------- /source/gfxlib/interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/interp.h -------------------------------------------------------------------------------- /source/gfxlib/lq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/lq2x.h -------------------------------------------------------------------------------- /source/gfxlib/macros.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/macros.mac -------------------------------------------------------------------------------- /source/gfxlib/motionblur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/motionblur.c -------------------------------------------------------------------------------- /source/gfxlib/scale2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/scale2x.c -------------------------------------------------------------------------------- /source/gfxlib/scanline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/scanline.c -------------------------------------------------------------------------------- /source/gfxlib/simple2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/simple2x.c -------------------------------------------------------------------------------- /source/gfxlib/tv2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/gfxlib/tv2x.c -------------------------------------------------------------------------------- /source/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/globals.h -------------------------------------------------------------------------------- /source/pnglib/pngdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/pnglib/pngdec.c -------------------------------------------------------------------------------- /source/pnglib/pngdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/pnglib/pngdec.h -------------------------------------------------------------------------------- /source/pnglib/savepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/pnglib/savepng.c -------------------------------------------------------------------------------- /source/pnglib/savepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/pnglib/savepng.h -------------------------------------------------------------------------------- /source/preprocessorlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/preprocessorlib/README -------------------------------------------------------------------------------- /source/preprocessorlib/pp_lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/preprocessorlib/pp_lexer.c -------------------------------------------------------------------------------- /source/preprocessorlib/pp_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/preprocessorlib/pp_lexer.h -------------------------------------------------------------------------------- /source/preprocessorlib/pp_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/preprocessorlib/pp_parser.c -------------------------------------------------------------------------------- /source/preprocessorlib/pp_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/preprocessorlib/pp_parser.h -------------------------------------------------------------------------------- /source/preprocessorlib/test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/preprocessorlib/test/build.sh -------------------------------------------------------------------------------- /source/preprocessorlib/test/pp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/preprocessorlib/test/pp_test.c -------------------------------------------------------------------------------- /source/preprocessorlib/test/tmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/preprocessorlib/test/tmp.c -------------------------------------------------------------------------------- /source/randlib/rand32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/randlib/rand32.c -------------------------------------------------------------------------------- /source/randlib/rand32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/randlib/rand32.h -------------------------------------------------------------------------------- /source/scriptlib/FirstFollow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/FirstFollow.h -------------------------------------------------------------------------------- /source/scriptlib/ImportCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/ImportCache.c -------------------------------------------------------------------------------- /source/scriptlib/ImportCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/ImportCache.h -------------------------------------------------------------------------------- /source/scriptlib/Instruction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Instruction.c -------------------------------------------------------------------------------- /source/scriptlib/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Instruction.h -------------------------------------------------------------------------------- /source/scriptlib/Interpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Interpreter.c -------------------------------------------------------------------------------- /source/scriptlib/Interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Interpreter.h -------------------------------------------------------------------------------- /source/scriptlib/Lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Lexer.c -------------------------------------------------------------------------------- /source/scriptlib/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Lexer.h -------------------------------------------------------------------------------- /source/scriptlib/List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/List.c -------------------------------------------------------------------------------- /source/scriptlib/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/List.h -------------------------------------------------------------------------------- /source/scriptlib/List_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/List_unittest.c -------------------------------------------------------------------------------- /source/scriptlib/Parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Parser.c -------------------------------------------------------------------------------- /source/scriptlib/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Parser.h -------------------------------------------------------------------------------- /source/scriptlib/ParserSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/ParserSet.c -------------------------------------------------------------------------------- /source/scriptlib/ParserSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/ParserSet.h -------------------------------------------------------------------------------- /source/scriptlib/Productions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Productions.h -------------------------------------------------------------------------------- /source/scriptlib/ScriptVariant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/ScriptVariant.c -------------------------------------------------------------------------------- /source/scriptlib/ScriptVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/ScriptVariant.h -------------------------------------------------------------------------------- /source/scriptlib/SolidList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/SolidList.c -------------------------------------------------------------------------------- /source/scriptlib/SolidList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/SolidList.h -------------------------------------------------------------------------------- /source/scriptlib/Stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Stack.c -------------------------------------------------------------------------------- /source/scriptlib/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/Stack.h -------------------------------------------------------------------------------- /source/scriptlib/StackedSymbolTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/StackedSymbolTable.c -------------------------------------------------------------------------------- /source/scriptlib/StackedSymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/StackedSymbolTable.h -------------------------------------------------------------------------------- /source/scriptlib/SymbolTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/SymbolTable.c -------------------------------------------------------------------------------- /source/scriptlib/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/SymbolTable.h -------------------------------------------------------------------------------- /source/scriptlib/depends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/scriptlib/depends.h -------------------------------------------------------------------------------- /source/stringptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/stringptr.c -------------------------------------------------------------------------------- /source/stringptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/stringptr.h -------------------------------------------------------------------------------- /source/stristr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/stristr.c -------------------------------------------------------------------------------- /source/stristr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/stristr.h -------------------------------------------------------------------------------- /source/strswitch/stringswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/strswitch/stringswitch.h -------------------------------------------------------------------------------- /source/tracelib/tracemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/tracelib/tracemalloc.c -------------------------------------------------------------------------------- /source/tracelib/tracemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/tracelib/tracemalloc.h -------------------------------------------------------------------------------- /source/tracelib2/tracelib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/tracelib2/tracelib2.c -------------------------------------------------------------------------------- /source/tracelib2/tracelib2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/tracelib2/tracelib2.h -------------------------------------------------------------------------------- /source/tracelib2/tracelib2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/tracelib2/tracelib2_test.c -------------------------------------------------------------------------------- /source/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/utils.c -------------------------------------------------------------------------------- /source/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/source/utils.h -------------------------------------------------------------------------------- /stringswitch_impl_lcm_cmdaimove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/stringswitch_impl_lcm_cmdaimove.c -------------------------------------------------------------------------------- /stringswitch_impl_lcm_cmdanim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/stringswitch_impl_lcm_cmdanim.c -------------------------------------------------------------------------------- /stringswitch_impl_lcm_cmdcandamage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/stringswitch_impl_lcm_cmdcandamage.c -------------------------------------------------------------------------------- /stringswitch_impl_lcm_cmdcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/stringswitch_impl_lcm_cmdcom.c -------------------------------------------------------------------------------- /stringswitch_impl_lcm_cmdhostile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/stringswitch_impl_lcm_cmdhostile.c -------------------------------------------------------------------------------- /stringswitch_impl_lcm_cmdprojectilehit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/stringswitch_impl_lcm_cmdprojectilehit.c -------------------------------------------------------------------------------- /stringswitch_impl_lcm_cmdsubtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/stringswitch_impl_lcm_cmdsubtype.c -------------------------------------------------------------------------------- /stringswitch_impl_lcm_cmdtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/stringswitch_impl_lcm_cmdtype.c -------------------------------------------------------------------------------- /stringswitch_impl_menutxt_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/stringswitch_impl_menutxt_cmd.c -------------------------------------------------------------------------------- /tools/bor2wav/bor2wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/bor2wav/bor2wav.c -------------------------------------------------------------------------------- /tools/borpak/COMPILING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borpak/COMPILING.txt -------------------------------------------------------------------------------- /tools/borpak/borpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borpak/borpak.c -------------------------------------------------------------------------------- /tools/borpak/build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borpak/build-linux.sh -------------------------------------------------------------------------------- /tools/borpak/build-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borpak/build-windows.bat -------------------------------------------------------------------------------- /tools/borpak/build-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borpak/build-windows.sh -------------------------------------------------------------------------------- /tools/borpak/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borpak/scandir.c -------------------------------------------------------------------------------- /tools/borpak/scandir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borpak/scandir.h -------------------------------------------------------------------------------- /tools/borpak/stristr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borpak/stristr.c -------------------------------------------------------------------------------- /tools/borpak/stristr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borpak/stristr.h -------------------------------------------------------------------------------- /tools/borplay/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/adpcm.c -------------------------------------------------------------------------------- /tools/borplay/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/adpcm.h -------------------------------------------------------------------------------- /tools/borplay/ao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/ao.h -------------------------------------------------------------------------------- /tools/borplay/borplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/borplay.c -------------------------------------------------------------------------------- /tools/borplay/build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/build-linux.sh -------------------------------------------------------------------------------- /tools/borplay/build-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/build-windows.sh -------------------------------------------------------------------------------- /tools/borplay/kbhit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/kbhit.c -------------------------------------------------------------------------------- /tools/borplay/kbhit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/kbhit.h -------------------------------------------------------------------------------- /tools/borplay/listmusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/listmusic.py -------------------------------------------------------------------------------- /tools/borplay/mylibaow32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/mylibaow32.c -------------------------------------------------------------------------------- /tools/borplay/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/os_types.h -------------------------------------------------------------------------------- /tools/borplay/packlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/packlib.py -------------------------------------------------------------------------------- /tools/borplay/stristr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/stristr.c -------------------------------------------------------------------------------- /tools/borplay/stristr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/borplay/stristr.h -------------------------------------------------------------------------------- /tools/checkunused.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/checkunused.pl -------------------------------------------------------------------------------- /tools/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/pack.sh -------------------------------------------------------------------------------- /tools/replacefilelinks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/replacefilelinks.pl -------------------------------------------------------------------------------- /tools/soundconv/bor2ogg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/soundconv/bor2ogg.pl -------------------------------------------------------------------------------- /tools/soundconv/complete_convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/soundconv/complete_convert.sh -------------------------------------------------------------------------------- /tools/soundconv/convertsound.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/soundconv/convertsound.pl -------------------------------------------------------------------------------- /tools/soundconv/convertsoundlinks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/soundconv/convertsoundlinks.pl -------------------------------------------------------------------------------- /tools/soundconv/mp32wav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/soundconv/mp32wav.sh -------------------------------------------------------------------------------- /tools/soundconv/wav2mp3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/soundconv/wav2mp3.sh -------------------------------------------------------------------------------- /tools/soundconv/wav2ogg-stereo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/soundconv/wav2ogg-stereo.sh -------------------------------------------------------------------------------- /tools/soundconv/wav2ogg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/soundconv/wav2ogg.sh -------------------------------------------------------------------------------- /tools/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/tools/unpack.sh -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/version.h -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rofl0r/openbor/HEAD/version.sh --------------------------------------------------------------------------------