-
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
15 changed files
with
15,742 additions
and
15,432 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,3 +85,4 @@ Temporary Items | |
fe6srr.ups | ||
fe7srr.ups | ||
fe8srr.ups | ||
fe8srr_c_skillsys.ups |
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,58 @@ | ||
@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=%~dp0fe8-kernel-dev.gba" | ||
|
||
set "main_event=%~dp0RomBuildfile_c_skillsys.event" | ||
|
||
set "target_rom=%~dp0fe8srr_c_skillsys.gba" | ||
set "target_ups=%~dp0fe8srr_c_skillsys.ups" | ||
set "target_sym=%~dp0fe8srr_c_skillsys.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 FE8 "-output:%target_rom%" "-input:%main_event%" --nocash-sym "--build-times" | ||
|
||
|
||
echo: | ||
echo Generating patch | ||
|
||
cd "%base_dir%" | ||
"%ups%" diff -b "%source_rom%" -m "%target_rom%" -o "%target_ups%" | ||
|
||
|
||
echo: | ||
echo Generating sym file | ||
|
||
echo: | ( "%symcombo%" "%target_sym%" "%target_sym%" "fe8.sym" ) | ||
|
||
echo: | ||
echo Done! | ||
|
||
pause |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.