mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-11-22 02:29:19 +01:00
b53bbf7dae
<!--- Provide a general summary of your changes in the Title above --> ## Description This change replaces deprecated graphics libdragon api with rdpq hardware accelerated drawing calls. New view has been added: MP3 player <!--- Describe your changes in detail --> ## Motivation and Context Use newest and supported features of libdragon api <!--- What does this sample do? What problem does it solve? --> <!--- If it fixes/closes/resolves an open issue, please link to the issue here --> ## How Has This Been Tested? On hardware with SC64 flashcart <!-- (if applicable) --> <!--- Please describe in detail how you tested your sample/changes. --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## Screenshots ![Screenshot 2023-07-08 23-57-56](https://github.com/Polprzewodnikowy/N64FlashcartMenu/assets/3756990/3f791246-5f70-43d1-8c54-aeac62513ff3) ![Screenshot 2023-07-08 23-58-16](https://github.com/Polprzewodnikowy/N64FlashcartMenu/assets/3756990/fdf436bf-6201-4b43-bebc-70be993ebc50) ## Types of changes <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Improvement (non-breaking change that adds a new feature) - [ ] Bug fix (fixes an issue) - [x] Breaking change (breaking change) - [ ] Config and build (change in the configuration and build system, has no impact on code or features) ## Checklist: <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> - [x] My code follows the code style of this project. - [x] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. <!--- It would be nice if you could sign off your contribution by replacing the name with your GitHub user name and GitHub email contact. --> Signed-off-by: GITHUB_USER <GITHUB_USER_EMAIL>
84 lines
1.9 KiB
Makefile
84 lines
1.9 KiB
Makefile
PROJECT_NAME = N64FlashcartMenu
|
|
|
|
.DEFAULT_GOAL := $(PROJECT_NAME)
|
|
|
|
SOURCE_DIR = src
|
|
ASSETS_DIR = assets
|
|
BUILD_DIR = build
|
|
OUTPUT_DIR = output
|
|
|
|
include $(N64_INST)/include/n64.mk
|
|
|
|
N64_CFLAGS += -iquote $(SOURCE_DIR)
|
|
N64_LDFLAGS += --wrap asset_load
|
|
|
|
SRCS = \
|
|
main.c \
|
|
boot/boot.c \
|
|
boot/crc32.c \
|
|
boot/ipl2.S \
|
|
flashcart/flashcart.c \
|
|
flashcart/sc64/sc64_internal.c \
|
|
flashcart/sc64/sc64.c \
|
|
libs/toml/toml.c \
|
|
menu/actions.c \
|
|
menu/assets.c \
|
|
menu/menu.c \
|
|
menu/mp3player.c \
|
|
menu/path.c \
|
|
menu/rom_database.c \
|
|
menu/settings.c \
|
|
menu/views/browser.c \
|
|
menu/views/credits.c \
|
|
menu/views/error.c \
|
|
menu/views/file_info.c \
|
|
menu/views/fragments/fragments.c \
|
|
menu/views/fragments/widgets.c \
|
|
menu/views/load.c \
|
|
menu/views/player.c \
|
|
menu/views/startup.c \
|
|
utils/fs.c
|
|
|
|
ASSETS = \
|
|
FiraMono-Bold.ttf
|
|
|
|
$(BUILD_DIR)/FiraMono-Bold.o: MKFONT_FLAGS+=--size 16 -r 20-7F -r 2000-206F -r 2190-21FF
|
|
|
|
$(BUILD_DIR)/%.o: $(ASSETS_DIR)/%.ttf
|
|
@echo " [FONT] $@"
|
|
@$(N64_MKFONT) $(MKFONT_FLAGS) -o $(ASSETS_DIR) "$<"
|
|
@$(N64_OBJCOPY) -I binary -O elf32-bigmips -B mips4300 $(basename $<).font64 $@
|
|
@rm $(basename $<).font64
|
|
|
|
OBJS = $(addprefix $(BUILD_DIR)/, $(addsuffix .o,$(basename $(SRCS) $(ASSETS))))
|
|
|
|
$(BUILD_DIR)/$(PROJECT_NAME).elf: $(OBJS)
|
|
|
|
$(PROJECT_NAME).z64: N64_ROM_TITLE=$(PROJECT_NAME)
|
|
|
|
$(PROJECT_NAME): $(PROJECT_NAME).z64
|
|
$(shell mkdir -p $(OUTPUT_DIR))
|
|
$(shell mv $(PROJECT_NAME).z64 $(OUTPUT_DIR))
|
|
|
|
sc64_minify: $(PROJECT_NAME)
|
|
$(shell python3 ./tools/sc64/minify.py $(BUILD_DIR)/$(PROJECT_NAME).elf $(OUTPUT_DIR)/$(PROJECT_NAME).z64 $(OUTPUT_DIR)/sc64menu.n64)
|
|
|
|
all: sc64_minify
|
|
.PHONY: all
|
|
|
|
clean:
|
|
$(shell rm -rf ./$(BUILD_DIR) ./$(OUTPUT_DIR))
|
|
.PHONY: clean
|
|
|
|
# run:
|
|
# $(shell ./remotedeploy.sh -d)
|
|
# FIXME: improve ability to deploy.
|
|
# if devcontainer, use remotedeploy.sh, else
|
|
# $(shell sc64deployer --boot direct-rom %~dp0$(OUTPUT_DIR))\$(PROJECT_NAME).z64)
|
|
# .PHONY: run
|
|
|
|
# test:
|
|
# TODO: run tests
|
|
|
|
-include $(wildcard $(BUILD_DIR)/*.d)
|