├── .gitignore ├── LICENSE.txt ├── README.txt ├── api.lua ├── bit32.lua ├── computer.lua ├── computer_memory.lua ├── cptr.lua ├── db.lua ├── depends.txt ├── description.txt ├── f.py ├── floppy.lua ├── forth.fth ├── forth_floppy.lua ├── helpers.lua ├── init.lua ├── mod.conf ├── models └── turtle.obj ├── progs ├── programs_here.txt ├── replicate.lua └── test.lua ├── screen.lua ├── t.lua ├── t2.lua ├── textures ├── floppy.png ├── floppy_drive_back.png ├── floppy_drive_bottom.png ├── floppy_drive_front.png ├── floppy_drive_left.png ├── floppy_drive_right.png ├── floppy_drive_top.png ├── floppy_programmator_back.png ├── floppy_programmator_bottom.png ├── floppy_programmator_front.png ├── floppy_programmator_left.png ├── floppy_programmator_right.png ├── floppy_programmator_top.png ├── screen_back.png ├── screen_bottom.png ├── screen_front.png ├── screen_left.png ├── screen_right.png ├── screen_top.png └── turtle.png ├── turtle-old.lua └── turtle.lua /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/README.txt -------------------------------------------------------------------------------- /api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/api.lua -------------------------------------------------------------------------------- /bit32.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/bit32.lua -------------------------------------------------------------------------------- /computer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/computer.lua -------------------------------------------------------------------------------- /computer_memory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/computer_memory.lua -------------------------------------------------------------------------------- /cptr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/cptr.lua -------------------------------------------------------------------------------- /db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/db.lua -------------------------------------------------------------------------------- /depends.txt: -------------------------------------------------------------------------------- 1 | pipeworks 2 | digilines 3 | -------------------------------------------------------------------------------- /description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/description.txt -------------------------------------------------------------------------------- /f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/f.py -------------------------------------------------------------------------------- /floppy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/floppy.lua -------------------------------------------------------------------------------- /forth.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/forth.fth -------------------------------------------------------------------------------- /forth_floppy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/forth_floppy.lua -------------------------------------------------------------------------------- /helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/helpers.lua -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/init.lua -------------------------------------------------------------------------------- /mod.conf: -------------------------------------------------------------------------------- 1 | name = turtle 2 | -------------------------------------------------------------------------------- /models/turtle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/models/turtle.obj -------------------------------------------------------------------------------- /progs/programs_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /progs/replicate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/progs/replicate.lua -------------------------------------------------------------------------------- /progs/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/progs/test.lua -------------------------------------------------------------------------------- /screen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/screen.lua -------------------------------------------------------------------------------- /t.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/t.lua -------------------------------------------------------------------------------- /t2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/t2.lua -------------------------------------------------------------------------------- /textures/floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy.png -------------------------------------------------------------------------------- /textures/floppy_drive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_drive_back.png -------------------------------------------------------------------------------- /textures/floppy_drive_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_drive_bottom.png -------------------------------------------------------------------------------- /textures/floppy_drive_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_drive_front.png -------------------------------------------------------------------------------- /textures/floppy_drive_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_drive_left.png -------------------------------------------------------------------------------- /textures/floppy_drive_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_drive_right.png -------------------------------------------------------------------------------- /textures/floppy_drive_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_drive_top.png -------------------------------------------------------------------------------- /textures/floppy_programmator_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_programmator_back.png -------------------------------------------------------------------------------- /textures/floppy_programmator_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_programmator_bottom.png -------------------------------------------------------------------------------- /textures/floppy_programmator_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_programmator_front.png -------------------------------------------------------------------------------- /textures/floppy_programmator_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_programmator_left.png -------------------------------------------------------------------------------- /textures/floppy_programmator_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_programmator_right.png -------------------------------------------------------------------------------- /textures/floppy_programmator_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/floppy_programmator_top.png -------------------------------------------------------------------------------- /textures/screen_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/screen_back.png -------------------------------------------------------------------------------- /textures/screen_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/screen_bottom.png -------------------------------------------------------------------------------- /textures/screen_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/screen_front.png -------------------------------------------------------------------------------- /textures/screen_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/screen_left.png -------------------------------------------------------------------------------- /textures/screen_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/screen_right.png -------------------------------------------------------------------------------- /textures/screen_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/screen_top.png -------------------------------------------------------------------------------- /textures/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/textures/turtle.png -------------------------------------------------------------------------------- /turtle-old.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/turtle-old.lua -------------------------------------------------------------------------------- /turtle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/turtle/HEAD/turtle.lua --------------------------------------------------------------------------------