├── .gitignore ├── BUGS ├── LICENSE ├── QUESTS ├── README.md ├── TODO ├── art ├── README.md ├── dawn.pal ├── gui │ ├── SDS_6x6.ttf │ ├── SDS_8x8.ttf │ └── gui.bmp ├── items │ ├── ammo.bmp │ ├── amulet.bmp │ ├── armor.bmp │ ├── book.bmp │ ├── boot.bmp │ ├── chest.bmp │ ├── flesh.bmp │ ├── food.bmp │ ├── glove.bmp │ ├── hat.bmp │ ├── key.bmp │ ├── letter.bmp │ ├── light.bmp │ ├── longwep.bmp │ ├── medwep.bmp │ ├── money.bmp │ ├── music.bmp │ ├── potion.bmp │ ├── ring.bmp │ ├── rock.bmp │ ├── scroll.bmp │ ├── shield.bmp │ ├── shortwep.bmp │ ├── tool.bmp │ └── wand.bmp ├── screenshots │ ├── 2018-09-30-083300_920x550_scrot.png │ ├── 2018-11-17-113313_1000x600_scrot.png │ ├── 2018-12-21-051827_800x400_scrot.png │ ├── bigfoot_v3.png │ └── platino.png ├── sprites │ ├── dwarf.bmp │ ├── ember.bmp │ ├── flower.bmp │ ├── lootbag.bmp │ └── missing.bmp └── tiles │ ├── board.bmp │ ├── ceiling.bmp │ ├── cloud.bmp │ ├── delete.bmp │ ├── dirt.bmp │ ├── error.bmp │ ├── floor.bmp │ ├── grass.bmp │ ├── trap_door.bmp │ ├── wall.bmp │ └── water.bmp ├── src ├── Args.c ├── Args.h ├── Atom.c ├── Atom.h ├── Attack.h ├── Bar.h ├── Bundle.c ├── Bundle.h ├── Clamped.c ├── Clamped.h ├── Classification.c ├── Classification.h ├── Compass.c ├── Compass.h ├── Dye.h ├── Embers.c ├── Embers.h ├── Field.c ├── Field.h ├── Fire.c ├── Fire.h ├── Flags.h ├── Flow.c ├── Flow.h ├── Font.c ├── Font.h ├── Frame.h ├── Gauge.c ├── Gauge.h ├── Hero.c ├── Hero.h ├── Hit.h ├── Hits.c ├── Hits.h ├── Identification.c ├── Identification.h ├── Input.c ├── Input.h ├── Inventory.c ├── Inventory.h ├── Item.c ├── Item.h ├── Items.c ├── Items.h ├── Line.c ├── Line.h ├── Makefile ├── Map.c ├── Map.h ├── Method.h ├── Overview.c ├── Overview.h ├── Palette.c ├── Palette.h ├── Party.h ├── Point.c ├── Point.h ├── Points.c ├── Points.h ├── Position.h ├── Projection.c ├── Projection.h ├── Ray.h ├── Room.h ├── Rooms.c ├── Rooms.h ├── Scanline.c ├── Scanline.h ├── Scroll.c ├── Scroll.h ├── Sdl.c ├── Sdl.h ├── Sheer.h ├── Sorter.c ├── Sorter.h ├── Speech.c ├── Speech.h ├── Sprite.c ├── Sprite.h ├── Sprites.c ├── Sprites.h ├── State.c ├── State.h ├── Surface.h ├── Surfaces.c ├── Surfaces.h ├── Text.c ├── Text.h ├── Texture.h ├── Textures.c ├── Textures.h ├── Theme.c ├── Theme.h ├── Timer.c ├── Timer.h ├── Title.c ├── Title.h ├── Torch.c ├── Torch.h ├── Tri.h ├── Tris.c ├── Tris.h ├── Vram.c ├── Vram.h ├── World.c ├── World.h ├── main.c ├── util.c └── util.h └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/.gitignore -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/BUGS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/LICENSE -------------------------------------------------------------------------------- /QUESTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/QUESTS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/TODO -------------------------------------------------------------------------------- /art/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/README.md -------------------------------------------------------------------------------- /art/dawn.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/dawn.pal -------------------------------------------------------------------------------- /art/gui/SDS_6x6.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/gui/SDS_6x6.ttf -------------------------------------------------------------------------------- /art/gui/SDS_8x8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/gui/SDS_8x8.ttf -------------------------------------------------------------------------------- /art/gui/gui.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/gui/gui.bmp -------------------------------------------------------------------------------- /art/items/ammo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/ammo.bmp -------------------------------------------------------------------------------- /art/items/amulet.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/amulet.bmp -------------------------------------------------------------------------------- /art/items/armor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/armor.bmp -------------------------------------------------------------------------------- /art/items/book.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/book.bmp -------------------------------------------------------------------------------- /art/items/boot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/boot.bmp -------------------------------------------------------------------------------- /art/items/chest.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/chest.bmp -------------------------------------------------------------------------------- /art/items/flesh.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/flesh.bmp -------------------------------------------------------------------------------- /art/items/food.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/food.bmp -------------------------------------------------------------------------------- /art/items/glove.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/glove.bmp -------------------------------------------------------------------------------- /art/items/hat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/hat.bmp -------------------------------------------------------------------------------- /art/items/key.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/key.bmp -------------------------------------------------------------------------------- /art/items/letter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/letter.bmp -------------------------------------------------------------------------------- /art/items/light.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/light.bmp -------------------------------------------------------------------------------- /art/items/longwep.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/longwep.bmp -------------------------------------------------------------------------------- /art/items/medwep.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/medwep.bmp -------------------------------------------------------------------------------- /art/items/money.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/money.bmp -------------------------------------------------------------------------------- /art/items/music.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/music.bmp -------------------------------------------------------------------------------- /art/items/potion.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/potion.bmp -------------------------------------------------------------------------------- /art/items/ring.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/ring.bmp -------------------------------------------------------------------------------- /art/items/rock.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/rock.bmp -------------------------------------------------------------------------------- /art/items/scroll.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/scroll.bmp -------------------------------------------------------------------------------- /art/items/shield.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/shield.bmp -------------------------------------------------------------------------------- /art/items/shortwep.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/shortwep.bmp -------------------------------------------------------------------------------- /art/items/tool.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/tool.bmp -------------------------------------------------------------------------------- /art/items/wand.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/items/wand.bmp -------------------------------------------------------------------------------- /art/screenshots/2018-09-30-083300_920x550_scrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/screenshots/2018-09-30-083300_920x550_scrot.png -------------------------------------------------------------------------------- /art/screenshots/2018-11-17-113313_1000x600_scrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/screenshots/2018-11-17-113313_1000x600_scrot.png -------------------------------------------------------------------------------- /art/screenshots/2018-12-21-051827_800x400_scrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/screenshots/2018-12-21-051827_800x400_scrot.png -------------------------------------------------------------------------------- /art/screenshots/bigfoot_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/screenshots/bigfoot_v3.png -------------------------------------------------------------------------------- /art/screenshots/platino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/screenshots/platino.png -------------------------------------------------------------------------------- /art/sprites/dwarf.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/sprites/dwarf.bmp -------------------------------------------------------------------------------- /art/sprites/ember.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/sprites/ember.bmp -------------------------------------------------------------------------------- /art/sprites/flower.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/sprites/flower.bmp -------------------------------------------------------------------------------- /art/sprites/lootbag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/sprites/lootbag.bmp -------------------------------------------------------------------------------- /art/sprites/missing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/sprites/missing.bmp -------------------------------------------------------------------------------- /art/tiles/board.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/board.bmp -------------------------------------------------------------------------------- /art/tiles/ceiling.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/ceiling.bmp -------------------------------------------------------------------------------- /art/tiles/cloud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/cloud.bmp -------------------------------------------------------------------------------- /art/tiles/delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/delete.bmp -------------------------------------------------------------------------------- /art/tiles/dirt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/dirt.bmp -------------------------------------------------------------------------------- /art/tiles/error.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/error.bmp -------------------------------------------------------------------------------- /art/tiles/floor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/floor.bmp -------------------------------------------------------------------------------- /art/tiles/grass.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/grass.bmp -------------------------------------------------------------------------------- /art/tiles/trap_door.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/trap_door.bmp -------------------------------------------------------------------------------- /art/tiles/wall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/wall.bmp -------------------------------------------------------------------------------- /art/tiles/water.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/art/tiles/water.bmp -------------------------------------------------------------------------------- /src/Args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Args.c -------------------------------------------------------------------------------- /src/Args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Args.h -------------------------------------------------------------------------------- /src/Atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Atom.c -------------------------------------------------------------------------------- /src/Atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Atom.h -------------------------------------------------------------------------------- /src/Attack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Attack.h -------------------------------------------------------------------------------- /src/Bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Bar.h -------------------------------------------------------------------------------- /src/Bundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Bundle.c -------------------------------------------------------------------------------- /src/Bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Bundle.h -------------------------------------------------------------------------------- /src/Clamped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Clamped.c -------------------------------------------------------------------------------- /src/Clamped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Clamped.h -------------------------------------------------------------------------------- /src/Classification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Classification.c -------------------------------------------------------------------------------- /src/Classification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Classification.h -------------------------------------------------------------------------------- /src/Compass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Compass.c -------------------------------------------------------------------------------- /src/Compass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Compass.h -------------------------------------------------------------------------------- /src/Dye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Dye.h -------------------------------------------------------------------------------- /src/Embers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Embers.c -------------------------------------------------------------------------------- /src/Embers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Embers.h -------------------------------------------------------------------------------- /src/Field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Field.c -------------------------------------------------------------------------------- /src/Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Field.h -------------------------------------------------------------------------------- /src/Fire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Fire.c -------------------------------------------------------------------------------- /src/Fire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Fire.h -------------------------------------------------------------------------------- /src/Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Flags.h -------------------------------------------------------------------------------- /src/Flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Flow.c -------------------------------------------------------------------------------- /src/Flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Flow.h -------------------------------------------------------------------------------- /src/Font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Font.c -------------------------------------------------------------------------------- /src/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Font.h -------------------------------------------------------------------------------- /src/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Frame.h -------------------------------------------------------------------------------- /src/Gauge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Gauge.c -------------------------------------------------------------------------------- /src/Gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Gauge.h -------------------------------------------------------------------------------- /src/Hero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Hero.c -------------------------------------------------------------------------------- /src/Hero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Hero.h -------------------------------------------------------------------------------- /src/Hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Hit.h -------------------------------------------------------------------------------- /src/Hits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Hits.c -------------------------------------------------------------------------------- /src/Hits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Hits.h -------------------------------------------------------------------------------- /src/Identification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Identification.c -------------------------------------------------------------------------------- /src/Identification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Identification.h -------------------------------------------------------------------------------- /src/Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Input.c -------------------------------------------------------------------------------- /src/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Input.h -------------------------------------------------------------------------------- /src/Inventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Inventory.c -------------------------------------------------------------------------------- /src/Inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Inventory.h -------------------------------------------------------------------------------- /src/Item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Item.c -------------------------------------------------------------------------------- /src/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Item.h -------------------------------------------------------------------------------- /src/Items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Items.c -------------------------------------------------------------------------------- /src/Items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Items.h -------------------------------------------------------------------------------- /src/Line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Line.c -------------------------------------------------------------------------------- /src/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Line.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Map.c -------------------------------------------------------------------------------- /src/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Map.h -------------------------------------------------------------------------------- /src/Method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Method.h -------------------------------------------------------------------------------- /src/Overview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Overview.c -------------------------------------------------------------------------------- /src/Overview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Overview.h -------------------------------------------------------------------------------- /src/Palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Palette.c -------------------------------------------------------------------------------- /src/Palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Palette.h -------------------------------------------------------------------------------- /src/Party.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Party.h -------------------------------------------------------------------------------- /src/Point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Point.c -------------------------------------------------------------------------------- /src/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Point.h -------------------------------------------------------------------------------- /src/Points.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Points.c -------------------------------------------------------------------------------- /src/Points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Points.h -------------------------------------------------------------------------------- /src/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Position.h -------------------------------------------------------------------------------- /src/Projection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Projection.c -------------------------------------------------------------------------------- /src/Projection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Projection.h -------------------------------------------------------------------------------- /src/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Ray.h -------------------------------------------------------------------------------- /src/Room.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Room.h -------------------------------------------------------------------------------- /src/Rooms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Rooms.c -------------------------------------------------------------------------------- /src/Rooms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Rooms.h -------------------------------------------------------------------------------- /src/Scanline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Scanline.c -------------------------------------------------------------------------------- /src/Scanline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Scanline.h -------------------------------------------------------------------------------- /src/Scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Scroll.c -------------------------------------------------------------------------------- /src/Scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Scroll.h -------------------------------------------------------------------------------- /src/Sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Sdl.c -------------------------------------------------------------------------------- /src/Sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Sdl.h -------------------------------------------------------------------------------- /src/Sheer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Sheer.h -------------------------------------------------------------------------------- /src/Sorter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Sorter.c -------------------------------------------------------------------------------- /src/Sorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Sorter.h -------------------------------------------------------------------------------- /src/Speech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Speech.c -------------------------------------------------------------------------------- /src/Speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Speech.h -------------------------------------------------------------------------------- /src/Sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Sprite.c -------------------------------------------------------------------------------- /src/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Sprite.h -------------------------------------------------------------------------------- /src/Sprites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Sprites.c -------------------------------------------------------------------------------- /src/Sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Sprites.h -------------------------------------------------------------------------------- /src/State.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/State.c -------------------------------------------------------------------------------- /src/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/State.h -------------------------------------------------------------------------------- /src/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Surface.h -------------------------------------------------------------------------------- /src/Surfaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Surfaces.c -------------------------------------------------------------------------------- /src/Surfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Surfaces.h -------------------------------------------------------------------------------- /src/Text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Text.c -------------------------------------------------------------------------------- /src/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Text.h -------------------------------------------------------------------------------- /src/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Texture.h -------------------------------------------------------------------------------- /src/Textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Textures.c -------------------------------------------------------------------------------- /src/Textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Textures.h -------------------------------------------------------------------------------- /src/Theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Theme.c -------------------------------------------------------------------------------- /src/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Theme.h -------------------------------------------------------------------------------- /src/Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Timer.c -------------------------------------------------------------------------------- /src/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Timer.h -------------------------------------------------------------------------------- /src/Title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Title.c -------------------------------------------------------------------------------- /src/Title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Title.h -------------------------------------------------------------------------------- /src/Torch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Torch.c -------------------------------------------------------------------------------- /src/Torch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Torch.h -------------------------------------------------------------------------------- /src/Tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Tri.h -------------------------------------------------------------------------------- /src/Tris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Tris.c -------------------------------------------------------------------------------- /src/Tris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Tris.h -------------------------------------------------------------------------------- /src/Vram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Vram.c -------------------------------------------------------------------------------- /src/Vram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/Vram.h -------------------------------------------------------------------------------- /src/World.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/World.c -------------------------------------------------------------------------------- /src/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/World.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/main.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/src/util.h -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glouw/andvaranaut/HEAD/test.sh --------------------------------------------------------------------------------