2017-06-24 15:32:54 -07:00
|
|
|
ifeq (,$(shell which sha1sum))
|
|
|
|
SHA1 := shasum
|
|
|
|
else
|
|
|
|
SHA1 := sha1sum
|
|
|
|
endif
|
2014-03-31 18:06:34 -07:00
|
|
|
|
2017-10-21 23:12:13 -07:00
|
|
|
RGBASM := rgbasm
|
|
|
|
RGBFIX := rgbfix
|
|
|
|
RGBGFX := rgbgfx
|
|
|
|
RGBLINK := rgblink
|
|
|
|
|
2016-03-01 17:58:00 -08:00
|
|
|
.SUFFIXES:
|
2017-05-29 16:15:34 -07:00
|
|
|
.PHONY: all clean tools compare crystal crystal11
|
2013-09-10 22:20:52 -07:00
|
|
|
.SECONDEXPANSION:
|
2017-05-27 22:22:17 -07:00
|
|
|
.PRECIOUS:
|
|
|
|
.SECONDARY:
|
2014-03-31 18:06:34 -07:00
|
|
|
|
2013-06-20 21:58:35 -07:00
|
|
|
|
2014-06-15 16:20:40 -07:00
|
|
|
crystal_obj := \
|
2013-11-28 22:51:27 -08:00
|
|
|
audio.o \
|
2017-12-16 16:00:50 -08:00
|
|
|
home.o \
|
|
|
|
main.o \
|
2016-01-29 13:24:02 -08:00
|
|
|
maps.o \
|
2017-12-16 16:00:50 -08:00
|
|
|
wram.o \
|
|
|
|
data/pokemon/dex_entries.o \
|
2017-12-14 20:00:54 -08:00
|
|
|
data/pokemon/egg_moves.o \
|
|
|
|
data/pokemon/evos_attacks.o \
|
2017-12-16 16:00:50 -08:00
|
|
|
engine/credits.o \
|
|
|
|
engine/events.o \
|
|
|
|
gfx/pics.o \
|
|
|
|
gfx/sprites.o \
|
|
|
|
lib/mobile/main.o \
|
|
|
|
text/common_text.o
|
2013-11-22 23:54:02 -08:00
|
|
|
|
2016-02-09 21:31:32 -08:00
|
|
|
crystal11_obj := $(crystal_obj:.o=11.o)
|
2013-09-10 15:24:44 -07:00
|
|
|
|
2013-12-09 23:02:16 -08:00
|
|
|
|
2017-05-29 20:22:24 -07:00
|
|
|
roms := pokecrystal.gbc pokecrystal11.gbc
|
2013-12-09 23:02:16 -08:00
|
|
|
|
2017-05-29 20:22:24 -07:00
|
|
|
all: crystal
|
2017-06-10 10:21:38 -07:00
|
|
|
crystal: pokecrystal.gbc
|
|
|
|
crystal11: pokecrystal11.gbc
|
|
|
|
|
2013-12-02 12:23:34 -08:00
|
|
|
clean:
|
2016-02-09 21:31:32 -08:00
|
|
|
rm -f $(roms) $(crystal_obj) $(crystal11_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
|
2017-06-29 15:34:29 -07:00
|
|
|
$(MAKE) clean -C tools/
|
2013-12-02 12:23:34 -08:00
|
|
|
|
2017-05-29 20:22:24 -07:00
|
|
|
compare: $(roms)
|
2017-06-24 15:32:54 -07:00
|
|
|
@$(SHA1) -c roms.sha1
|
2013-09-10 22:20:52 -07:00
|
|
|
|
2017-05-29 16:15:34 -07:00
|
|
|
tools:
|
2017-06-29 15:34:29 -07:00
|
|
|
$(MAKE) -C tools/
|
2016-08-24 18:56:07 -07:00
|
|
|
|
2017-12-03 17:46:11 -08:00
|
|
|
|
2017-12-03 18:58:27 -08:00
|
|
|
$(crystal11_obj): RGBASMFLAGS = -D CRYSTAL11
|
|
|
|
|
|
|
|
# The dep rules have to be explicit or else missing files won't be reported.
|
|
|
|
# As a side effect, they're evaluated immediately instead of when the rule is invoked.
|
|
|
|
# It doesn't look like $(shell) can be deferred so there might not be a better way.
|
|
|
|
define DEP
|
|
|
|
$1: $2 $$(shell tools/scan_includes $2)
|
|
|
|
$$(RGBASM) $$(RGBASMFLAGS) -o $$@ $$<
|
2017-12-03 17:46:11 -08:00
|
|
|
endef
|
|
|
|
|
|
|
|
# Build tools when building the rom.
|
|
|
|
# This has to happen before the rules are processed, since that's when scan_includes is run.
|
|
|
|
ifeq (,$(filter clean tools,$(MAKECMDGOALS)))
|
|
|
|
|
2017-12-03 18:58:27 -08:00
|
|
|
$(info $(shell $(MAKE) -C tools))
|
2017-12-03 17:46:11 -08:00
|
|
|
|
|
|
|
$(foreach obj, $(crystal11_obj), $(eval $(call DEP,$(obj),$(obj:11.o=.asm))))
|
|
|
|
$(foreach obj, $(crystal_obj), $(eval $(call DEP,$(obj),$(obj:.o=.asm))))
|
|
|
|
|
2017-12-03 18:58:27 -08:00
|
|
|
endif
|
2016-01-29 13:24:02 -08:00
|
|
|
|
2017-12-03 17:46:11 -08:00
|
|
|
|
2017-10-21 23:06:43 -07:00
|
|
|
pokecrystal11.gbc: $(crystal11_obj) pokecrystal.link
|
2017-10-21 23:12:13 -07:00
|
|
|
$(RGBLINK) -n pokecrystal11.sym -m pokecrystal11.map -l pokecrystal.link -o $@ $(crystal11_obj)
|
|
|
|
$(RGBFIX) -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -n 1 -p 0 -r 3 -t PM_CRYSTAL $@
|
2017-07-22 13:26:17 -07:00
|
|
|
sort pokecrystal11.sym -o pokecrystal11.sym
|
2015-02-14 00:51:34 -08:00
|
|
|
|
2017-10-21 23:06:43 -07:00
|
|
|
pokecrystal.gbc: $(crystal_obj) pokecrystal.link
|
2017-10-21 23:12:13 -07:00
|
|
|
$(RGBLINK) -n pokecrystal.sym -m pokecrystal.map -l pokecrystal.link -o $@ $(crystal_obj)
|
|
|
|
$(RGBFIX) -Cjv -i BYTE -k 01 -l 0x33 -m 0x10 -p 0 -r 3 -t PM_CRYSTAL $@
|
2017-07-22 13:26:17 -07:00
|
|
|
sort pokecrystal.sym -o pokecrystal.sym
|
2013-12-09 23:02:16 -08:00
|
|
|
|
2017-05-28 10:47:08 -07:00
|
|
|
|
2017-06-24 15:34:25 -07:00
|
|
|
# For files that the compressor can't match, there will be a .lz file suffixed with the md5 hash of the correct uncompressed file.
|
2017-05-28 10:47:08 -07:00
|
|
|
# If the hash of the uncompressed file matches, use this .lz instead.
|
|
|
|
# This allows pngs to be used for compressed graphics and still match.
|
|
|
|
|
2017-06-24 15:34:25 -07:00
|
|
|
%.lz: hash = $(shell tools/md5 $(*D)/$(*F) | sed "s/\(.\{8\}\).*/\1/")
|
2016-08-24 18:56:07 -07:00
|
|
|
%.lz: %
|
2017-05-28 10:47:08 -07:00
|
|
|
$(eval filename := $@.$(hash))
|
2017-08-20 09:38:32 -07:00
|
|
|
$(if $(wildcard $(filename)),\
|
|
|
|
cp $(filename) $@,\
|
|
|
|
tools/lzcomp $< $@)
|
2017-05-28 10:47:08 -07:00
|
|
|
|
|
|
|
|
2017-08-20 09:38:32 -07:00
|
|
|
### Terrible hacks to match animations. Delete these rules if you don't care about matching.
|
2017-05-28 10:47:08 -07:00
|
|
|
|
2017-05-29 17:14:23 -07:00
|
|
|
# Dewgong has an unused tile id in its last frame. The tile itself is missing.
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/dewgong/frames.asm: gfx/pokemon/dewgong/front.animated.tilemap gfx/pokemon/dewgong/front.dimensions
|
2017-05-29 17:14:23 -07:00
|
|
|
tools/pokemon_animation -f $^ > $@
|
|
|
|
echo " db \$$4d" >> $@
|
|
|
|
|
|
|
|
# Lugia has two unused tile ids in its last frame. The tiles themselves are missing.
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/lugia/frames.asm: gfx/pokemon/lugia/front.animated.tilemap gfx/pokemon/lugia/front.dimensions
|
2017-05-29 17:14:23 -07:00
|
|
|
tools/pokemon_animation -f $^ > $@
|
|
|
|
echo " db \$$5e, \$$59" >> $@
|
|
|
|
|
|
|
|
# Girafarig has a redundant tile after the end. It is used in two frames, so it must be injected into the generated graphics.
|
|
|
|
# This is more involved, so it's hacked into pokemon_animation_graphics.
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/girafarig/front.animated.2bpp: gfx/pokemon/girafarig/front.2bpp gfx/pokemon/girafarig/front.dimensions
|
2017-05-29 17:14:23 -07:00
|
|
|
tools/pokemon_animation_graphics --girafarig -o $@ $^
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/girafarig/front.animated.tilemap: gfx/pokemon/girafarig/front.2bpp gfx/pokemon/girafarig/front.dimensions
|
2017-05-29 17:14:23 -07:00
|
|
|
tools/pokemon_animation_graphics --girafarig -t $@ $^
|
2016-08-24 18:56:07 -07:00
|
|
|
|
2017-05-29 17:14:23 -07:00
|
|
|
|
2017-08-20 09:38:32 -07:00
|
|
|
### Pokemon pic graphics rules
|
2016-08-24 19:03:12 -07:00
|
|
|
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/%/normal.gbcpal: gfx/pokemon/%/front.png
|
2017-10-21 23:12:13 -07:00
|
|
|
$(RGBGFX) -p $@ $<
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/%/normal.pal: gfx/pokemon/%/normal.gbcpal
|
2016-08-24 18:56:07 -07:00
|
|
|
tools/palette -p $< > $@
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/%/back.2bpp: gfx/pokemon/%/back.png
|
2017-10-21 23:12:13 -07:00
|
|
|
$(RGBGFX) -h -o $@ $<
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/%/bitmask.asm: gfx/pokemon/%/front.animated.tilemap gfx/pokemon/%/front.dimensions
|
2016-08-24 18:56:07 -07:00
|
|
|
tools/pokemon_animation -b $^ > $@
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/%/frames.asm: gfx/pokemon/%/front.animated.tilemap gfx/pokemon/%/front.dimensions
|
2016-08-24 18:56:07 -07:00
|
|
|
tools/pokemon_animation -f $^ > $@
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/%/front.animated.2bpp: gfx/pokemon/%/front.2bpp gfx/pokemon/%/front.dimensions
|
2016-08-24 18:56:07 -07:00
|
|
|
tools/pokemon_animation_graphics -o $@ $^
|
2017-12-26 09:50:32 -08:00
|
|
|
gfx/pokemon/%/front.animated.tilemap: gfx/pokemon/%/front.2bpp gfx/pokemon/%/front.dimensions
|
2016-08-24 18:56:07 -07:00
|
|
|
tools/pokemon_animation_graphics -t $@ $^
|
2017-05-27 22:20:46 -07:00
|
|
|
# Don't use -h, pokemon_animation_graphics takes care of it
|
2017-12-26 09:50:32 -08:00
|
|
|
#gfx/pokemon/%/front.2bpp: gfx/pokemon/%/front.png
|
2017-10-21 23:12:13 -07:00
|
|
|
# $(RGBGFX) -o $@ $<
|
2016-08-24 19:03:12 -07:00
|
|
|
|
2017-05-28 10:47:08 -07:00
|
|
|
|
2017-08-20 09:38:32 -07:00
|
|
|
### Misc file-specific graphics rules
|
2017-05-28 10:47:08 -07:00
|
|
|
|
2017-12-09 19:57:41 -08:00
|
|
|
gfx/shrink/shrink1.2bpp: rgbgfx += -h
|
|
|
|
gfx/shrink/shrink2.2bpp: rgbgfx += -h
|
2016-08-24 19:03:12 -07:00
|
|
|
|
2017-06-20 20:36:28 -07:00
|
|
|
gfx/trainers/%.2bpp: rgbgfx += -h
|
2017-06-22 20:40:22 -07:00
|
|
|
gfx/trainers/%.pal: gfx/trainers/%.gbcpal
|
|
|
|
tools/palette -p $< > $@
|
2017-05-28 20:23:11 -07:00
|
|
|
|
2017-12-26 17:02:00 -08:00
|
|
|
gfx/mail/dragonite.1bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/mail/large_note.1bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/mail/surf_mail_border.1bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/mail/flower_mail_border.1bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/mail/litebluemail_border.1bpp: tools/gfx += --remove-whitespace
|
2017-05-28 20:23:11 -07:00
|
|
|
|
2017-12-09 19:57:41 -08:00
|
|
|
gfx/pokedex/pokedex.2bpp: tools/gfx += --trim-whitespace
|
|
|
|
gfx/pokedex/sgb.2bpp: tools/gfx += --trim-whitespace
|
|
|
|
gfx/pokedex/slowpoke.2bpp: tools/gfx += --trim-whitespace
|
2017-06-20 20:42:29 -07:00
|
|
|
|
2017-08-20 10:34:26 -07:00
|
|
|
gfx/title/crystal.2bpp: tools/gfx += --interleave --png=$<
|
|
|
|
gfx/title/old_fg.2bpp: tools/gfx += --interleave --png=$<
|
2017-06-21 20:45:01 -07:00
|
|
|
gfx/title/logo.2bpp: rgbgfx += -x 4
|
|
|
|
|
2017-06-22 20:29:36 -07:00
|
|
|
gfx/trade/ball.2bpp: tools/gfx += --remove-whitespace
|
2017-09-09 21:30:52 -07:00
|
|
|
gfx/trade/game_boy_n64.2bpp: tools/gfx += --trim-whitespace
|
2017-06-22 20:29:36 -07:00
|
|
|
|
2017-12-09 19:57:41 -08:00
|
|
|
gfx/slots/slots_2.2bpp: tools/gfx += --interleave --png=$<
|
|
|
|
gfx/slots/slots_3.2bpp: tools/gfx += --interleave --png=$< --remove-duplicates --keep-whitespace --remove-xflip
|
2017-06-23 16:56:24 -07:00
|
|
|
|
2017-12-09 20:37:08 -08:00
|
|
|
gfx/card_flip/card_flip_2.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
|
2017-12-26 15:45:04 -08:00
|
|
|
gfx/battle_anims/angels.2bpp: tools/gfx += --trim-whitespace
|
|
|
|
gfx/battle_anims/beam.2bpp: tools/gfx += --remove-xflip --remove-yflip --remove-whitespace
|
|
|
|
gfx/battle_anims/bubble.2bpp: tools/gfx += --trim-whitespace
|
|
|
|
gfx/battle_anims/charge.2bpp: tools/gfx += --trim-whitespace
|
|
|
|
gfx/battle_anims/egg.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/battle_anims/explosion.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/battle_anims/hit.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/battle_anims/horn.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/battle_anims/lightning.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/battle_anims/misc.2bpp: tools/gfx += --remove-duplicates --remove-xflip
|
|
|
|
gfx/battle_anims/noise.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/battle_anims/objects.2bpp: tools/gfx += --remove-whitespace --remove-xflip
|
|
|
|
gfx/battle_anims/pokeball.2bpp: tools/gfx += --remove-xflip --keep-whitespace
|
|
|
|
gfx/battle_anims/reflect.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/battle_anims/rocks.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/battle_anims/skyattack.2bpp: tools/gfx += --remove-whitespace
|
|
|
|
gfx/battle_anims/status.2bpp: tools/gfx += --remove-whitespace
|
2017-06-23 21:45:31 -07:00
|
|
|
|
2017-12-09 19:57:41 -08:00
|
|
|
gfx/player/chris.2bpp: rgbgfx += -h
|
|
|
|
gfx/player/chris_back.2bpp: rgbgfx += -h
|
|
|
|
gfx/player/kris.2bpp: rgbgfx += -h
|
|
|
|
gfx/player/kris_back.2bpp: rgbgfx += -h
|
|
|
|
|
|
|
|
gfx/trainer_card/chris_card.2bpp: rgbgfx += -h
|
|
|
|
gfx/trainer_card/kris_card.2bpp: rgbgfx += -h
|
|
|
|
|
|
|
|
gfx/battle/dude.2bpp: rgbgfx += -h
|
|
|
|
|
2017-12-15 14:50:45 -08:00
|
|
|
gfx/font/unused_bold_font.1bpp: tools/gfx += --trim-whitespace
|
|
|
|
|
2017-12-09 19:57:41 -08:00
|
|
|
gfx/pokegear/pokegear.2bpp: rgbgfx += -x2
|
|
|
|
gfx/pokegear/pokegear_sprites.2bpp: tools/gfx += --trim-whitespace
|
2017-06-23 23:50:42 -07:00
|
|
|
|
2017-12-15 14:50:45 -08:00
|
|
|
gfx/mobile/ascii_font.2bpp: tools/gfx += --trim-whitespace
|
|
|
|
gfx/mobile/electro_ball.2bpp: tools/gfx += --trim-whitespace
|
|
|
|
gfx/mobile/electro_ball_nonmatching.2bpp: tools/gfx += --remove-duplicates --remove-xflip
|
|
|
|
gfx/mobile/mobile_splash.2bpp: tools/gfx += --remove-duplicates --remove-xflip
|
|
|
|
gfx/mobile/pichu_animated.2bpp: tools/gfx += --trim-whitespace
|
|
|
|
|
2017-12-11 14:51:04 -08:00
|
|
|
gfx/unknown/unknown_egg.2bpp: rgbgfx += -h
|
2017-05-28 20:23:11 -07:00
|
|
|
|
|
|
|
|
2017-05-29 17:14:23 -07:00
|
|
|
%.bin: ;
|
|
|
|
%.blk: ;
|
2017-05-28 20:23:11 -07:00
|
|
|
|
2017-05-29 17:14:23 -07:00
|
|
|
%.2bpp: %.png
|
2017-10-21 23:12:13 -07:00
|
|
|
$(RGBGFX) $(rgbgfx) -o $@ $<
|
2017-08-20 09:38:32 -07:00
|
|
|
$(if $(tools/gfx),\
|
|
|
|
tools/gfx $(tools/gfx) -o $@ $@)
|
2017-06-20 20:36:28 -07:00
|
|
|
|
2017-05-29 17:14:23 -07:00
|
|
|
%.1bpp: %.png
|
2017-10-21 23:12:13 -07:00
|
|
|
$(RGBGFX) $(rgbgfx) -d1 -o $@ $<
|
2017-08-20 09:38:32 -07:00
|
|
|
$(if $(tools/gfx),\
|
|
|
|
tools/gfx $(tools/gfx) -d1 -o $@ $@)
|
2017-06-20 20:36:28 -07:00
|
|
|
|
2017-05-29 17:14:23 -07:00
|
|
|
%.tilemap: %.png
|
2017-10-21 23:12:13 -07:00
|
|
|
$(RGBGFX) -t $@ $<
|
2017-05-29 17:14:23 -07:00
|
|
|
%.gbcpal: %.png
|
2017-10-21 23:12:13 -07:00
|
|
|
$(RGBGFX) -p $@ $<
|
2017-05-29 17:14:23 -07:00
|
|
|
%.pal: %.gbcpal
|
|
|
|
tools/palette $< > $@
|
|
|
|
%.dimensions: %.png
|
|
|
|
tools/png_dimensions $< $@
|