├── .gitignore ├── .gitmodules ├── .komodotools └── sf_include_loader_f.komodotool ├── LICENSE.md ├── README.md ├── RamenEngine.komodoproject ├── afkit ├── LICENSE.md ├── README.md ├── SUMMARY.md ├── afkit.f ├── ans │ ├── depend.f │ ├── files.f │ ├── param-enclosures.f │ ├── roger.f │ ├── strops.f │ └── version.f ├── audio-allegro.f ├── dep │ ├── allegro5 │ │ ├── 5.2.3 │ │ │ ├── allegro_monolith-5.2.dll │ │ │ ├── allegro_monolith-debug-5.2.dll │ │ │ ├── libFLAC++-6.dll │ │ │ ├── libFLAC-8.dll │ │ │ ├── libenet.dll │ │ │ ├── libfreetype.dll │ │ │ ├── libgcc_s_dw2-1.dll │ │ │ ├── libjpeg-62.dll │ │ │ ├── libogg-0.dll │ │ │ ├── libphysfs.dll │ │ │ ├── libpng16.dll │ │ │ ├── libstdc++-6.dll │ │ │ ├── libtheora-0.dll │ │ │ ├── libtheoradec-1.dll │ │ │ ├── libtheoraenc-1.dll │ │ │ ├── libturbojpeg.dll │ │ │ ├── libvorbis-0.dll │ │ │ ├── libvorbisenc-2.dll │ │ │ ├── libvorbisfile-3.dll │ │ │ ├── libwinpthread-1.dll │ │ │ └── libzlib.dll │ │ ├── allegro-5.2.x.f │ │ ├── allegro5_01_general.f │ │ ├── allegro5_02_events.f │ │ ├── allegro5_03_keys.f │ │ ├── allegro5_04_audio.f │ │ ├── allegro5_05_graphics.f │ │ ├── allegro5_06_fs.f │ │ └── allegro5_07_misc.f │ ├── wincon.dll │ └── zlib │ │ ├── libzlib.dll │ │ └── zlib.f ├── license.md ├── piston.f ├── plat │ ├── gfwin32.f │ ├── sf.f │ ├── sf │ │ └── fixedp.f │ ├── sflinux.f │ ├── sfwin32.f │ └── win │ │ ├── clipb.f │ │ └── fpext.f └── platforms.f ├── allegro5.cfg ├── common-ui.f ├── ex ├── actors-1.f ├── actors-2.f └── bubbles.f ├── kitconfig.f ├── loader.f ├── make_platformer.bat ├── prg └── dummy.txt ├── ramen.bat ├── ramen ├── LICENSE.md ├── README.md ├── SUMMARY.md ├── assets.f ├── base.f ├── basic.f ├── buffer.f ├── default.f ├── draw.f ├── fixops.f ├── font.f ├── ide │ ├── data │ │ ├── consolab.ttf │ │ └── consolas16.png │ ├── ide.f │ └── v2d.f ├── image.f ├── lib │ ├── a.f │ ├── pjoy.f │ ├── rsort.f │ ├── std │ │ ├── actor.f │ │ ├── audio.f │ │ ├── kb.f │ │ ├── rangetools.f │ │ ├── sprites.f │ │ ├── task.f │ │ ├── transform.f │ │ ├── v2d.f │ │ └── zsort.f │ ├── tween.f │ ├── upscale.f │ └── utils.f ├── make_sfwin.bat ├── minimal.f ├── publish.f ├── ramen.f ├── res.f ├── sample.f ├── structs.f ├── superobj.f ├── system.f └── types.f ├── sample └── platformer │ ├── bg.f │ ├── blackness.f │ ├── break.f │ ├── camera.f │ ├── data │ ├── level01.buf │ ├── level01.tmx │ ├── tiles.png │ └── tiles.tsx │ ├── helpers.f │ ├── lib │ ├── array2d.f │ ├── buffer2d.f │ ├── collision.f │ └── tilemap2.f │ ├── map.f │ ├── particles.f │ ├── platformer.f │ ├── player.f │ ├── preamble.f │ ├── test.f │ └── tools.f └── venery ├── .komodotools └── sf_include_venery_f-1.ktf ├── README.md ├── array.f ├── nodetree.f ├── notes.txt ├── string.f ├── test.f ├── venery.f └── venery.komodoproject /.gitignore: -------------------------------------------------------------------------------- 1 | session.f 2 | allegro\.log 3 | _*.* 4 | bin 5 | private 6 | temp 7 | prg/*/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.komodotools/sf_include_loader_f.komodotool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/.komodotools/sf_include_loader_f.komodotool -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/README.md -------------------------------------------------------------------------------- /RamenEngine.komodoproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/RamenEngine.komodoproject -------------------------------------------------------------------------------- /afkit/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/LICENSE.md -------------------------------------------------------------------------------- /afkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/README.md -------------------------------------------------------------------------------- /afkit/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/SUMMARY.md -------------------------------------------------------------------------------- /afkit/afkit.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/afkit.f -------------------------------------------------------------------------------- /afkit/ans/depend.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/ans/depend.f -------------------------------------------------------------------------------- /afkit/ans/files.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/ans/files.f -------------------------------------------------------------------------------- /afkit/ans/param-enclosures.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/ans/param-enclosures.f -------------------------------------------------------------------------------- /afkit/ans/roger.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/ans/roger.f -------------------------------------------------------------------------------- /afkit/ans/strops.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/ans/strops.f -------------------------------------------------------------------------------- /afkit/ans/version.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/ans/version.f -------------------------------------------------------------------------------- /afkit/audio-allegro.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/audio-allegro.f -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/allegro_monolith-5.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/allegro_monolith-5.2.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/allegro_monolith-debug-5.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/allegro_monolith-debug-5.2.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libFLAC++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libFLAC++-6.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libFLAC-8.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libenet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libenet.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libfreetype.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libfreetype.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libjpeg-62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libjpeg-62.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libogg-0.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libphysfs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libphysfs.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libpng16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libpng16.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libstdc++-6.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libtheora-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libtheora-0.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libtheoradec-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libtheoradec-1.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libtheoraenc-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libtheoraenc-1.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libturbojpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libturbojpeg.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libvorbis-0.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libvorbisenc-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libvorbisenc-2.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libvorbisfile-3.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libwinpthread-1.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/5.2.3/libzlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/5.2.3/libzlib.dll -------------------------------------------------------------------------------- /afkit/dep/allegro5/allegro-5.2.x.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/allegro-5.2.x.f -------------------------------------------------------------------------------- /afkit/dep/allegro5/allegro5_01_general.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/allegro5_01_general.f -------------------------------------------------------------------------------- /afkit/dep/allegro5/allegro5_02_events.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/allegro5_02_events.f -------------------------------------------------------------------------------- /afkit/dep/allegro5/allegro5_03_keys.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/allegro5_03_keys.f -------------------------------------------------------------------------------- /afkit/dep/allegro5/allegro5_04_audio.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/allegro5_04_audio.f -------------------------------------------------------------------------------- /afkit/dep/allegro5/allegro5_05_graphics.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/allegro5_05_graphics.f -------------------------------------------------------------------------------- /afkit/dep/allegro5/allegro5_06_fs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/allegro5_06_fs.f -------------------------------------------------------------------------------- /afkit/dep/allegro5/allegro5_07_misc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/allegro5/allegro5_07_misc.f -------------------------------------------------------------------------------- /afkit/dep/wincon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/wincon.dll -------------------------------------------------------------------------------- /afkit/dep/zlib/libzlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/zlib/libzlib.dll -------------------------------------------------------------------------------- /afkit/dep/zlib/zlib.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/dep/zlib/zlib.f -------------------------------------------------------------------------------- /afkit/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/license.md -------------------------------------------------------------------------------- /afkit/piston.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/piston.f -------------------------------------------------------------------------------- /afkit/plat/gfwin32.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/plat/gfwin32.f -------------------------------------------------------------------------------- /afkit/plat/sf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/plat/sf.f -------------------------------------------------------------------------------- /afkit/plat/sf/fixedp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/plat/sf/fixedp.f -------------------------------------------------------------------------------- /afkit/plat/sflinux.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/plat/sflinux.f -------------------------------------------------------------------------------- /afkit/plat/sfwin32.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/plat/sfwin32.f -------------------------------------------------------------------------------- /afkit/plat/win/clipb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/plat/win/clipb.f -------------------------------------------------------------------------------- /afkit/plat/win/fpext.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/plat/win/fpext.f -------------------------------------------------------------------------------- /afkit/platforms.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/afkit/platforms.f -------------------------------------------------------------------------------- /allegro5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/allegro5.cfg -------------------------------------------------------------------------------- /common-ui.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/common-ui.f -------------------------------------------------------------------------------- /ex/actors-1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ex/actors-1.f -------------------------------------------------------------------------------- /ex/actors-2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ex/actors-2.f -------------------------------------------------------------------------------- /ex/bubbles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ex/bubbles.f -------------------------------------------------------------------------------- /kitconfig.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/kitconfig.f -------------------------------------------------------------------------------- /loader.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/loader.f -------------------------------------------------------------------------------- /make_platformer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/make_platformer.bat -------------------------------------------------------------------------------- /prg/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ramen.bat: -------------------------------------------------------------------------------- 1 | sf include loader.f -------------------------------------------------------------------------------- /ramen/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/LICENSE.md -------------------------------------------------------------------------------- /ramen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/README.md -------------------------------------------------------------------------------- /ramen/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/SUMMARY.md -------------------------------------------------------------------------------- /ramen/assets.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/assets.f -------------------------------------------------------------------------------- /ramen/base.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/base.f -------------------------------------------------------------------------------- /ramen/basic.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/basic.f -------------------------------------------------------------------------------- /ramen/buffer.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/buffer.f -------------------------------------------------------------------------------- /ramen/default.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/default.f -------------------------------------------------------------------------------- /ramen/draw.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/draw.f -------------------------------------------------------------------------------- /ramen/fixops.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/fixops.f -------------------------------------------------------------------------------- /ramen/font.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/font.f -------------------------------------------------------------------------------- /ramen/ide/data/consolab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/ide/data/consolab.ttf -------------------------------------------------------------------------------- /ramen/ide/data/consolas16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/ide/data/consolas16.png -------------------------------------------------------------------------------- /ramen/ide/ide.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/ide/ide.f -------------------------------------------------------------------------------- /ramen/ide/v2d.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/ide/v2d.f -------------------------------------------------------------------------------- /ramen/image.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/image.f -------------------------------------------------------------------------------- /ramen/lib/a.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/a.f -------------------------------------------------------------------------------- /ramen/lib/pjoy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/pjoy.f -------------------------------------------------------------------------------- /ramen/lib/rsort.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/rsort.f -------------------------------------------------------------------------------- /ramen/lib/std/actor.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/std/actor.f -------------------------------------------------------------------------------- /ramen/lib/std/audio.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/std/audio.f -------------------------------------------------------------------------------- /ramen/lib/std/kb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/std/kb.f -------------------------------------------------------------------------------- /ramen/lib/std/rangetools.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/std/rangetools.f -------------------------------------------------------------------------------- /ramen/lib/std/sprites.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/std/sprites.f -------------------------------------------------------------------------------- /ramen/lib/std/task.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/std/task.f -------------------------------------------------------------------------------- /ramen/lib/std/transform.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/std/transform.f -------------------------------------------------------------------------------- /ramen/lib/std/v2d.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/std/v2d.f -------------------------------------------------------------------------------- /ramen/lib/std/zsort.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/std/zsort.f -------------------------------------------------------------------------------- /ramen/lib/tween.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/tween.f -------------------------------------------------------------------------------- /ramen/lib/upscale.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/upscale.f -------------------------------------------------------------------------------- /ramen/lib/utils.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/lib/utils.f -------------------------------------------------------------------------------- /ramen/make_sfwin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/make_sfwin.bat -------------------------------------------------------------------------------- /ramen/minimal.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/minimal.f -------------------------------------------------------------------------------- /ramen/publish.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/publish.f -------------------------------------------------------------------------------- /ramen/ramen.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/ramen.f -------------------------------------------------------------------------------- /ramen/res.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/res.f -------------------------------------------------------------------------------- /ramen/sample.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/sample.f -------------------------------------------------------------------------------- /ramen/structs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/structs.f -------------------------------------------------------------------------------- /ramen/superobj.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/superobj.f -------------------------------------------------------------------------------- /ramen/system.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/system.f -------------------------------------------------------------------------------- /ramen/types.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/ramen/types.f -------------------------------------------------------------------------------- /sample/platformer/bg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/bg.f -------------------------------------------------------------------------------- /sample/platformer/blackness.f: -------------------------------------------------------------------------------- 1 | blackness as 2 | :now draw> black viewwh rectf ; 3 | -------------------------------------------------------------------------------- /sample/platformer/break.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/break.f -------------------------------------------------------------------------------- /sample/platformer/camera.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/camera.f -------------------------------------------------------------------------------- /sample/platformer/data/level01.buf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/data/level01.buf -------------------------------------------------------------------------------- /sample/platformer/data/level01.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/data/level01.tmx -------------------------------------------------------------------------------- /sample/platformer/data/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/data/tiles.png -------------------------------------------------------------------------------- /sample/platformer/data/tiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/data/tiles.tsx -------------------------------------------------------------------------------- /sample/platformer/helpers.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/helpers.f -------------------------------------------------------------------------------- /sample/platformer/lib/array2d.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/lib/array2d.f -------------------------------------------------------------------------------- /sample/platformer/lib/buffer2d.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/lib/buffer2d.f -------------------------------------------------------------------------------- /sample/platformer/lib/collision.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/lib/collision.f -------------------------------------------------------------------------------- /sample/platformer/lib/tilemap2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/lib/tilemap2.f -------------------------------------------------------------------------------- /sample/platformer/map.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/map.f -------------------------------------------------------------------------------- /sample/platformer/particles.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/particles.f -------------------------------------------------------------------------------- /sample/platformer/platformer.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/platformer.f -------------------------------------------------------------------------------- /sample/platformer/player.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/player.f -------------------------------------------------------------------------------- /sample/platformer/preamble.f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/platformer/test.f: -------------------------------------------------------------------------------- 1 | .( hi) -------------------------------------------------------------------------------- /sample/platformer/tools.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/sample/platformer/tools.f -------------------------------------------------------------------------------- /venery/.komodotools/sf_include_venery_f-1.ktf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/venery/.komodotools/sf_include_venery_f-1.ktf -------------------------------------------------------------------------------- /venery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/venery/README.md -------------------------------------------------------------------------------- /venery/array.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/venery/array.f -------------------------------------------------------------------------------- /venery/nodetree.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/venery/nodetree.f -------------------------------------------------------------------------------- /venery/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/venery/notes.txt -------------------------------------------------------------------------------- /venery/string.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/venery/string.f -------------------------------------------------------------------------------- /venery/test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/venery/test.f -------------------------------------------------------------------------------- /venery/venery.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/venery/venery.f -------------------------------------------------------------------------------- /venery/venery.komodoproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/RamenEngine/HEAD/venery/venery.komodoproject --------------------------------------------------------------------------------