├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin └── torch.gb ├── info ├── torch_effect_anim.gif ├── torch_effect_scx_mod_8.gif ├── torch_effect_sprites_anim.gif ├── torch_effect_sprites_off.png ├── torch_effect_window_only.png └── torch_gb.png ├── res ├── calc │ └── radius_lut.xls ├── circle grid preview.xcf ├── circle_large.gbm ├── circle_large.gbm.tiles.gbr ├── circle_large.xcf ├── circle_large_tiles.c ├── circle_large_tiles.h ├── circle_small.gbm ├── circle_small.gbm.tiles.gbr ├── circle_small.xcf ├── circle_small_tiles.c ├── circle_small_tiles.h ├── dungeon_32x32.gbm ├── dungeon_32x32.gbr ├── dungeon_32x32.png ├── dungeon_map.c ├── dungeon_map.h ├── dungeon_tiles.c ├── dungeon_tiles.h ├── dungeon_tiles.png ├── sondanielson.itch.io.xcf ├── sprite.gbm ├── sprite.gbr ├── sprite.png ├── sprite_map.txt ├── sprite_tiles.c └── sprite_tiles.h ├── shintendo-method ├── Makefile ├── bin │ └── torch.gb ├── res │ ├── dungeon.c │ ├── dungeon.h │ ├── dungeon.png │ ├── sprite.c │ ├── sprite.h │ ├── sprite.png │ └── sprite_small.png ├── src │ ├── common.c │ ├── common.h │ └── main.c ├── torch.gif ├── torch_flicker.gif └── torch_gbdk_shintendo_method.gif └── src ├── common.c ├── common.h ├── lcd_isr.s ├── main.c ├── torch_sprite_data.c ├── torch_sprite_data.h ├── torch_win_data.c └── torch_win_data.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/README.md -------------------------------------------------------------------------------- /bin/torch.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/bin/torch.gb -------------------------------------------------------------------------------- /info/torch_effect_anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/info/torch_effect_anim.gif -------------------------------------------------------------------------------- /info/torch_effect_scx_mod_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/info/torch_effect_scx_mod_8.gif -------------------------------------------------------------------------------- /info/torch_effect_sprites_anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/info/torch_effect_sprites_anim.gif -------------------------------------------------------------------------------- /info/torch_effect_sprites_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/info/torch_effect_sprites_off.png -------------------------------------------------------------------------------- /info/torch_effect_window_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/info/torch_effect_window_only.png -------------------------------------------------------------------------------- /info/torch_gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/info/torch_gb.png -------------------------------------------------------------------------------- /res/calc/radius_lut.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/calc/radius_lut.xls -------------------------------------------------------------------------------- /res/circle grid preview.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle grid preview.xcf -------------------------------------------------------------------------------- /res/circle_large.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle_large.gbm -------------------------------------------------------------------------------- /res/circle_large.gbm.tiles.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle_large.gbm.tiles.gbr -------------------------------------------------------------------------------- /res/circle_large.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle_large.xcf -------------------------------------------------------------------------------- /res/circle_large_tiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle_large_tiles.c -------------------------------------------------------------------------------- /res/circle_large_tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle_large_tiles.h -------------------------------------------------------------------------------- /res/circle_small.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle_small.gbm -------------------------------------------------------------------------------- /res/circle_small.gbm.tiles.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle_small.gbm.tiles.gbr -------------------------------------------------------------------------------- /res/circle_small.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle_small.xcf -------------------------------------------------------------------------------- /res/circle_small_tiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle_small_tiles.c -------------------------------------------------------------------------------- /res/circle_small_tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/circle_small_tiles.h -------------------------------------------------------------------------------- /res/dungeon_32x32.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/dungeon_32x32.gbm -------------------------------------------------------------------------------- /res/dungeon_32x32.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/dungeon_32x32.gbr -------------------------------------------------------------------------------- /res/dungeon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/dungeon_32x32.png -------------------------------------------------------------------------------- /res/dungeon_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/dungeon_map.c -------------------------------------------------------------------------------- /res/dungeon_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/dungeon_map.h -------------------------------------------------------------------------------- /res/dungeon_tiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/dungeon_tiles.c -------------------------------------------------------------------------------- /res/dungeon_tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/dungeon_tiles.h -------------------------------------------------------------------------------- /res/dungeon_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/dungeon_tiles.png -------------------------------------------------------------------------------- /res/sondanielson.itch.io.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/sondanielson.itch.io.xcf -------------------------------------------------------------------------------- /res/sprite.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/sprite.gbm -------------------------------------------------------------------------------- /res/sprite.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/sprite.gbr -------------------------------------------------------------------------------- /res/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/sprite.png -------------------------------------------------------------------------------- /res/sprite_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/sprite_map.txt -------------------------------------------------------------------------------- /res/sprite_tiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/sprite_tiles.c -------------------------------------------------------------------------------- /res/sprite_tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/res/sprite_tiles.h -------------------------------------------------------------------------------- /shintendo-method/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/Makefile -------------------------------------------------------------------------------- /shintendo-method/bin/torch.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/bin/torch.gb -------------------------------------------------------------------------------- /shintendo-method/res/dungeon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/res/dungeon.c -------------------------------------------------------------------------------- /shintendo-method/res/dungeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/res/dungeon.h -------------------------------------------------------------------------------- /shintendo-method/res/dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/res/dungeon.png -------------------------------------------------------------------------------- /shintendo-method/res/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/res/sprite.c -------------------------------------------------------------------------------- /shintendo-method/res/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/res/sprite.h -------------------------------------------------------------------------------- /shintendo-method/res/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/res/sprite.png -------------------------------------------------------------------------------- /shintendo-method/res/sprite_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/res/sprite_small.png -------------------------------------------------------------------------------- /shintendo-method/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/src/common.c -------------------------------------------------------------------------------- /shintendo-method/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/src/common.h -------------------------------------------------------------------------------- /shintendo-method/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/src/main.c -------------------------------------------------------------------------------- /shintendo-method/torch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/torch.gif -------------------------------------------------------------------------------- /shintendo-method/torch_flicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/torch_flicker.gif -------------------------------------------------------------------------------- /shintendo-method/torch_gbdk_shintendo_method.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/shintendo-method/torch_gbdk_shintendo_method.gif -------------------------------------------------------------------------------- /src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/src/common.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/src/common.h -------------------------------------------------------------------------------- /src/lcd_isr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/src/lcd_isr.s -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/src/main.c -------------------------------------------------------------------------------- /src/torch_sprite_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/src/torch_sprite_data.c -------------------------------------------------------------------------------- /src/torch_sprite_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/src/torch_sprite_data.h -------------------------------------------------------------------------------- /src/torch_win_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/src/torch_win_data.c -------------------------------------------------------------------------------- /src/torch_win_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbbbbr/gb-torch-effect/HEAD/src/torch_win_data.h --------------------------------------------------------------------------------