diff options
| author | Paul Gilbert | 2016-09-10 23:15:30 -0400 | 
|---|---|---|
| committer | Paul Gilbert | 2016-09-10 23:15:30 -0400 | 
| commit | cb33eca327414837d9095b7797a1996705fd768f (patch) | |
| tree | 22734fbdb25da9be11bbde440deb79509b2bff3d | |
| parent | 34d636d72e18f2b02acf14ed50addbc4e61ae15f (diff) | |
| download | scummvm-rg350-cb33eca327414837d9095b7797a1996705fd768f.tar.gz scummvm-rg350-cb33eca327414837d9095b7797a1996705fd768f.tar.bz2 scummvm-rg350-cb33eca327414837d9095b7797a1996705fd768f.zip | |
DEVTOOLS: Moved Titanic messages to create_titanic
| -rw-r--r-- | devtools/create_titanic/create_titanic_dat.cpp | 68 | 
1 files changed, 66 insertions, 2 deletions
| diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 82285dc928..6bbf8b11b8 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -55,7 +55,7 @@   */  #define VERSION_NUMBER 1 -#define HEADER_SIZE 0xD00 +#define HEADER_SIZE 0xD40  Common::File inputFile, outputFile;  Common::PEResources res; @@ -414,6 +414,70 @@ static const BedheadEntry OFF_RESTING_D_WRONG[1] = {  	{ "Any", "Any", "Any", "ClosedWrong", 59, 70 }  }; +static const char *const STRINGS_EN[] = { +	"", +	"You are standing outside the Pellerator.", +	"I'm sorry, you cannot enter this pellerator at present as a bot is in the way.", +	"The Succ-U-Bus is in Standby, or \"Off\" mode at present.", +	"There is currently nothing to deliver.", +	"There is currently nothing in the tray to send.", +	"The Succ-U-Bus is a Single Entity Delivery Device.", +	"Chickens are allocated on a one-per-customer basis.", +	"Only one piece of chicken per passenger. Thank you.", +	"You have been upgraded to 1st Class status. Enjoy hugely.", +	"You have been upgraded to 2nd Class status. Enjoy.", +	"This room is reserved for the exclusive use of first class passengers." +	" That does not currently include you", +	"No losers.", +	"Passengers of your class are not permitted to enter this area.", +	"Please exit from the other side.", +	"For mysterious and unknowable reasons, this transport is temporarily out of order.", +	"Unfortunately this fan controller has blown a fuse.", +	"In case of emergency hammer requirement, poke with long stick.", +	"This stick is too short to reach the branches.", +	"You are standing outside Elevator %d", +	"I'm sorry, you cannot enter this elevator at present as a bot is in the way.", +	"This elevator is currently in an advanced state of non-functionality.", +	"That light appears to be loose.", +	"Lumi-Glow(tm) Lights.  They glow in the dark!", +	"You already have one.", +	"'This glass is totally and utterly unbreakable.", +	"For emergency long stick, smash glass.", +	"This dispenser has suddenly been fitted with unbreakable glass " +	"to prevent unseemly hoarding of sticks.", +	"The Chicken is already quite clean enough, thank you.", +	"Now would be an excellent opportunity to adjust your viewing apparatus.", +	"You cannot take this because the cage is locked shut.", +	"You are already at your chosen destination.", +	"Passengers of your class are not permitted to enter this area.", +	"Sorry, you must be at least 3rd class before you can summon for help.", +	"You have not assigned a room to go to.", +	"Sorry, this elevator does not go below floor 27.", +	"You must select a game to load first.", +	"You must select a game to save first.", +	"Please supply Galactic reference material.", +	"This is the restaurant music system.  It appears to be locked.", +	"You can't pick this up on account of it being stuck to the branch.", +	"You cannot get this, it is frozen to the branch.", +	"Please check in at the reception desk.", +	"This foodstuff is already sufficiently garnished.", +	"Sadly, this dispenser is currently empty.", +	"Please place food source beneath dispenser for sauce delivery.", +	"The Seasonal Adjustment switch is not operational at the present time.", +	"This is your stateroom. It is for sleeping. If you desire " +	"entertainment or relaxation, please visit your local leisure lounge.", +	"The bed will not currently support your weight." +	" We are working on this problem but are unlikely to be able to fix it.", +	"This is not your assigned room. Please do not enjoy.", +	"Sadly, this is out of your reach.", +	"The Succ-U-Bus is a Single Entity Delivery Device.", +	"Sadly, the Grand Canal transport system is closed for the winter.", +	"This area is off limits to passengers.", +	"Go where?", +	"It would be nice if you could take that but you can't.", +	"A bowl of pistachio nuts.", +	"Not a bowl of pistachio nuts." +};  void NORETURN_PRE error(const char *s, ...) {  	printf("%s\n", s); @@ -869,7 +933,7 @@ void writeData() {  	writeStringArray("TEXT/ITEM_NAMES", ITEM_NAMES, 46);  	writeStringArray("TEXT/ITEM_IDS", ITEM_IDS, 40);  	writeStringArray("TEXT/ROOM_NAMES", ROOM_NAMES, 34); - +	writeStringArray("TEXT/STRINGS", STRINGS_EN, 58);  	const int TEXT_PHRASES[3] = { 0x61D3C8, 0x618340, 0x61B1E0 };  	const int TEXT_REPLACEMENTS1[3] = { 0x61D9B0, 0x61C788, 0x61B7C8 };  	const int TEXT_REPLACEMENTS2[3] = { 0x61DD20, 0x61CAF8, 0x61BB38 }; | 
