rename tracker_scene to scene/tracker

This commit is contained in:
Zack Buhman 2025-06-26 16:08:10 -05:00
parent 183393d665
commit 040a70ee51
9 changed files with 13 additions and 15 deletions

View File

@ -4,8 +4,7 @@ OPT = -O2
MAKEFILE_PATH := $(patsubst %/,%,$(dir $(abspath $(firstword $(MAKEFILE_LIST))))) MAKEFILE_PATH := $(patsubst %/,%,$(dir $(abspath $(firstword $(MAKEFILE_LIST)))))
LIB ?= $(MAKEFILE_PATH)/dreamcast LIB ?= $(MAKEFILE_PATH)/dreamcast
CFLAGS += -D__dreamcast__ CFLAGS += -I$(MAKEFILE_PATH)
CFLAGS += -I$(MAKEFILE_PATH)/
CFLAGS += -I$(MAKEFILE_PATH)/dreamcast CFLAGS += -I$(MAKEFILE_PATH)/dreamcast
CFLAGS += -Wno-error=strict-aliasing -fno-strict-aliasing CFLAGS += -Wno-error=strict-aliasing -fno-strict-aliasing
CARCH = -m4-single -ml CARCH = -m4-single -ml

View File

@ -25,7 +25,7 @@
#include "font/tandy1k.data.h" #include "font/tandy1k.data.h"
#include "framebuffer.hpp" #include "framebuffer.hpp"
#include "src/tracker_scene/scene.hpp" #include "src/scene/tracker/scene.hpp"
constexpr uint32_t ta_alloc = 0 constexpr uint32_t ta_alloc = 0
| ta_alloc_ctrl::pt_opb::_32x4byte | ta_alloc_ctrl::pt_opb::_32x4byte

View File

@ -1,8 +1,7 @@
#include "../ta_parameter.hpp" #include "../../ta_parameter.hpp"
#include "../../graphics_primitive.hpp"
#include "../graphics_primitive.hpp" #include "../../interpreter.hpp"
#include "../interpreter.hpp" #include "../../framebuffer.hpp"
#include "../framebuffer.hpp"
#include "channel_status.hpp" #include "channel_status.hpp"

View File

@ -1,7 +1,7 @@
#include "../ta_parameter.hpp" #include "../../ta_parameter.hpp"
#include "../graphics_primitive.hpp" #include "../../graphics_primitive.hpp"
#include "../interpreter.hpp" #include "../../interpreter.hpp"
#include "notes.hpp" #include "notes.hpp"

View File

@ -1,4 +1,4 @@
#include "../ta_parameter.hpp" #include "../../ta_parameter.hpp"
#include "notes.hpp" #include "notes.hpp"
#include "channel_status.hpp" #include "channel_status.hpp"

View File

@ -24,9 +24,9 @@ XM_PLAYER_OBJ = \
src/malloc.o \ src/malloc.o \
src/framebuffer.o \ src/framebuffer.o \
src/graphics_primitive.o \ src/graphics_primitive.o \
src/tracker_scene/scene.o \ src/scene/tracker/scene.o \
src/tracker_scene/channel_status.o \ src/scene/tracker/channel_status.o \
src/tracker_scene/notes.o src/scene/tracker/notes.o
xm_player.elf: LDSCRIPT = $(LIB)/main.lds xm_player.elf: LDSCRIPT = $(LIB)/main.lds
xm_player.elf: $(START_OBJ) $(XM_PLAYER_OBJ) $(TEXTURE_OBJ) $(XM_OBJ) $(LIBGCC) xm_player.elf: $(START_OBJ) $(XM_PLAYER_OBJ) $(TEXTURE_OBJ) $(XM_OBJ) $(LIBGCC)