-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from MADRAFi/v1.7
V1.7
- Loading branch information
Showing
21 changed files
with
464 additions
and
178 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
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,49 @@ | ||
// stale | ||
|
||
FREE_TOP = $AC00; | ||
// FREE_TOP = $AE80; | ||
|
||
PLAYER_ADDRESS = FREE_TOP; | ||
MODULE_ADDRESS = PLAYER_ADDRESS + $800; | ||
|
||
PMG_ADDRESS = $BC00; | ||
|
||
GFX_ADDRESS = $C000; | ||
TXT_ADDRESS = $D800; | ||
|
||
LOGO_CHARSET_ADDRESS = $DC00; | ||
LOGO_CHARSET_ADDRESS2 = LOGO_CHARSET_ADDRESS + $400; | ||
CHARSET_ADDRESS = $E400; | ||
|
||
DISPLAY_LIST_ADDRESS_TITLE = CHARSET_ADDRESS + $400; | ||
DISPLAY_LIST_ADDRESS_MENU = DISPLAY_LIST_ADDRESS_TITLE + $100; | ||
DISPLAY_LIST_ADDRESS_CONSOLE = DISPLAY_LIST_ADDRESS_MENU + $100; | ||
LOGODATA_ADDRESS = DISPLAY_LIST_ADDRESS_CONSOLE + $100; | ||
// ***************************************************************************// | ||
NUMBEROFLOCATIONS = 15; // number of locations defined in locations.asm. Needs to match. | ||
NUMBEROFITEMS = 24; // number of items defined in items.asm. Needs to match. | ||
NUMBEROFSHIPS = 12; // number of ships defined in ships array. | ||
|
||
MAXSHIPPARAMETERS = 8; // number of ship parameters in ship array | ||
MAXAVAILABLEITEMS = 12; // numer of concurrent items displayed | ||
MAXCARGOSLOTS = 10; // number of cargo slots | ||
MAXAVAILABLEDESTINATIONS = 6; // number of destinations from location. | ||
|
||
STARTUEC = 10000; | ||
MAXUEC = 4000000000; | ||
WINUEC = 10000000; | ||
WINSHIP = 10; | ||
STARTLOCATION = 0; | ||
|
||
// ***************************************************************************// | ||
|
||
MENU_TITLE = 0; | ||
MENU_MAIN = 1; | ||
MENU_NAV = 2; | ||
MENU_TRADE = 3; | ||
MENU_MAINT = 4; | ||
MENU_SHIP = 5; | ||
MENU_SAVE = 6; | ||
MENU_LOAD = 7; | ||
MENU_CREDITS = 8; | ||
MENU_CONGRATS = 9; |
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,29 @@ | ||
|
||
locations: array [0..NUMBEROFLOCATIONS-1] of TString = ( | ||
'Port Alistair'~, | ||
'Glum Hex'~, | ||
'Gas Mine 158'~, | ||
'Ambiguous Lab'~, | ||
'Area 64'~, | ||
'Kudrov Ore'~, | ||
'Hydro Harvest'~, | ||
'Hikers Research'~, | ||
'Oasis Depot'~, | ||
'Highdust'~, | ||
'Yantar-4K2M'~, | ||
'Tycho Station'~, | ||
'Lourvil'~, | ||
'LKRM-Westforge'~, | ||
'LKRM-Sandy'~//, | ||
// 'Cloud City'~, | ||
// 'Mining Area 147'~, | ||
// 'Cargo Depot'~, | ||
// 'CyberTech'~, | ||
// 'Fobos'~, | ||
// 'Sakigake'~, | ||
// 'Nozomi'~, | ||
// 'Akatsuki'~, | ||
// 'Novorossiysk'~, | ||
// 'Rostov'~ | ||
|
||
); |
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
Oops, something went wrong.