-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
134 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
@echo off | ||
|
||
@rem USAGE: "MAKE HACK_full.cmd" [quick] | ||
@rem If first argument is "quick", then this will not update text, tables, maps, or generate a patch | ||
@rem "MACK HACK_quick.cmd" simply calls this but with the quick argument, for convenience | ||
|
||
@rem defining buildfile config | ||
|
||
set "source_rom=%~dp0fe7.gba" | ||
|
||
set "main_event=%~dp0RomBuildfileCache.event" | ||
|
||
set "target_rom=%~dp0fe7cache.gba" | ||
set "target_sym=%~dp0fe7cache.sym" | ||
|
||
@rem defining tools | ||
|
||
set "c2ea=%~dp0Tools\C2EA\c2ea" | ||
set "textprocess=%~dp0Tools\TextProcess\text-process-classic" | ||
set "ups=%~dp0Tools\ups\ups" | ||
set "parsefile=%~dp0EventAssembler\Tools\ParseFileUTF8.exe" | ||
set "tmx2ea=%~dp0Tools\tmx2ea\tmx2ea" | ||
set symcombo=%~dp0Tools\sym\SymCombo.exe | ||
|
||
@rem set %~dp0 into a variable because batch is stupid and messes with it when using conditionals? | ||
|
||
set "base_dir=%~dp0" | ||
|
||
@rem do the actual building | ||
|
||
echo Copying ROM | ||
|
||
copy "%source_rom%" "%target_rom%" | ||
|
||
echo: | ||
echo Assembling | ||
|
||
cd "%base_dir%EventAssembler" | ||
ColorzCore A FE7 "-output:%target_rom%" "-input:%main_event%" --nocash-sym | ||
|
||
|
||
echo: | ||
echo Generating sym file | ||
|
||
echo: | ( "%symcombo%" "%target_sym%" "%target_sym%" "fe7.sym" ) | ||
|
||
echo: | ||
echo Done! | ||
|
||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
#define VeslyBuildfile | ||
#define Reskin | ||
//#define RepointChMenu | ||
#ifndef FreeSpace | ||
#ifdef _FE6_ | ||
#define FreeSpace 0x840000 | ||
#endif | ||
#ifdef _FE7_ | ||
#define FreeSpace 0x1000000 | ||
#endif | ||
#ifdef _FE8_ | ||
#define FreeSpace 0x1000000 | ||
#endif | ||
ORG FreeSpace | ||
#endif | ||
#include "EAstdlib.event" | ||
#include "Definitions.event" | ||
#define MAKE_CACHE_ROM | ||
#ifdef VeslyBuildfile | ||
ORG CURRENTOFFSET + 0x30000 // 0.2mb for text | ||
#include "gfx/Anims/Installer.event" | ||
#endif | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
ALIGN 32 | ||
WORD 0 0 0 0 0 0 0 0 | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters