Skip to content

Commit

Permalink
Merge pull request #140 from ElectroDeoxys/bgmap
Browse files Browse the repository at this point in the history
Bgmap
  • Loading branch information
dannye authored Nov 11, 2023
2 parents cf85e77 + 5334320 commit 0677ed2
Show file tree
Hide file tree
Showing 376 changed files with 447 additions and 378 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@
*.png binary diff=hex
*.bin binary diff=hex
*.lz.match binary diff=hex
*.dimensions binary diff=hex

# these are generated but just in case
*.2bpp binary diff=hex
*.1bpp binary diff=hex
*.lz binary diff=hex
*.bgmap binary diff=hex
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
*.2bpp
*.pal

# intermediate BG map files
*.bgmap

# compressed data
*.lz

Expand Down
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ clean: tidy
-delete

find src/data \
\( -iname '*.lz' \) \
\( -iname '*.lz' \
-o -iname '*.bgmap' \) \
-delete

tidy:
Expand Down Expand Up @@ -163,6 +164,9 @@ src/gfx/titlescreen/title_screen_cgb.2bpp: rgbgfx += -x 12
$(if $(tools/gfx),\
tools/gfx $(tools/gfx) -d1 -o $@ $@)

%.bgmap: %.bin ../dimensions/%.dimensions
tools/bgmap $(tools/bgmap) $^ $@

# remove -m if you don't care for matching
%.lz: %
tools/compressor -m $(tools/compressor) $< $@
Binary file removed src/data/maps/permissions/challenge_hall_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/club_lobby_cgb.bin
Binary file not shown.
Binary file removed src/data/maps/permissions/club_lobby_cgb.bin.lz.match
Binary file not shown.
1 change: 0 additions & 1 deletion src/data/maps/permissions/deck_machine_map_event_cgb.bin

This file was deleted.

Binary file removed src/data/maps/permissions/deck_machine_room_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/fighting_club_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/fire_club_cgb.bin
Binary file not shown.
Binary file removed src/data/maps/permissions/fire_club_cgb.bin.lz.match
Binary file not shown.
Binary file removed src/data/maps/permissions/fire_club_entrance_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/grass_club_cgb.bin
Binary file not shown.
Binary file removed src/data/maps/permissions/grass_club_cgb.bin.lz.match
Binary file not shown.
Binary file removed src/data/maps/permissions/grass_club_entrance_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/hall_of_honor_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/ishihara_cgb.bin
Binary file not shown.
Binary file removed src/data/maps/permissions/ishihara_cgb.bin.lz.match
Binary file not shown.
Binary file removed src/data/maps/permissions/lightning_club_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/mason_laboratory_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/pokemon_dome_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/pokemon_dome_entrance_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/psychic_club_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/rock_club_cgb.bin
Binary file not shown.
Binary file removed src/data/maps/permissions/rock_club_cgb.bin.lz.match
Binary file not shown.
Binary file removed src/data/maps/permissions/rock_club_entrance_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/science_club_cgb.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed src/data/maps/permissions/water_club_cgb.bin
Binary file not shown.
Binary file removed src/data/maps/permissions/water_club_cgb.bin.lz.match
Binary file not shown.
Binary file removed src/data/maps/permissions/water_club_entrance_cgb.bin
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 0677ed2

Please sign in to comment.