mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-10 11:51:52 +00:00
PRIVATE: removed useless empty lines
This commit is contained in:
parent
c331703e4b
commit
7ed834dd8f
@ -118,7 +118,6 @@ void fSyncSound(ArgArray args) {
|
|||||||
if (strcmp("\"\"", args[0].u.str) != 0) {
|
if (strcmp("\"\"", args[0].u.str) != 0) {
|
||||||
Common::String *s = new Common::String(args[0].u.str);
|
Common::String *s = new Common::String(args[0].u.str);
|
||||||
g_private->playSound(*s, 1, true, false);
|
g_private->playSound(*s, 1, true, false);
|
||||||
//assert(0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -225,16 +224,11 @@ void fDossierAdd(ArgArray args) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void fDossierBitmap(ArgArray args) {
|
void fDossierBitmap(ArgArray args) {
|
||||||
|
|
||||||
assert (args.size() == 2);
|
assert (args.size() == 2);
|
||||||
|
|
||||||
int x = args[0].u.val;
|
int x = args[0].u.val;
|
||||||
int y = args[1].u.val;
|
int y = args[1].u.val;
|
||||||
|
|
||||||
assert(x == 40 && y == 30);
|
assert(x == 40 && y == 30);
|
||||||
|
|
||||||
g_private->loadDossier();
|
g_private->loadDossier();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void fDossierChgSheet(ArgArray args) {
|
void fDossierChgSheet(ArgArray args) {
|
||||||
@ -288,7 +282,6 @@ void fLoseInventory(ArgArray args) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void fInventory(ArgArray args) {
|
void fInventory(ArgArray args) {
|
||||||
|
|
||||||
// assert types
|
// assert types
|
||||||
Datum b1 = args[0];
|
Datum b1 = args[0];
|
||||||
Datum v1 = args[1];
|
Datum v1 = args[1];
|
||||||
@ -296,7 +289,6 @@ void fInventory(ArgArray args) {
|
|||||||
Datum e = args[3];
|
Datum e = args[3];
|
||||||
Datum i = args[4];
|
Datum i = args[4];
|
||||||
Datum c = args[5];
|
Datum c = args[5];
|
||||||
|
|
||||||
Datum snd = args[8];
|
Datum snd = args[8];
|
||||||
|
|
||||||
assert(v1.type == STRING || v1.type == NAME);
|
assert(v1.type == STRING || v1.type == NAME);
|
||||||
@ -308,12 +300,10 @@ void fInventory(ArgArray args) {
|
|||||||
Common::String *bmp = new Common::String(i.u.str);
|
Common::String *bmp = new Common::String(i.u.str);
|
||||||
assert(g_private->isDemo() || strcmp(bmp->c_str(), "\"\"") != 0);
|
assert(g_private->isDemo() || strcmp(bmp->c_str(), "\"\"") != 0);
|
||||||
|
|
||||||
|
|
||||||
if (v1.type == STRING)
|
if (v1.type == STRING)
|
||||||
assert(strcmp(v1.u.str, "\"\"") == 0);
|
assert(strcmp(v1.u.str, "\"\"") == 0);
|
||||||
|
|
||||||
debugC(1, kPrivateDebugScript, "Inventory(...)");
|
debugC(1, kPrivateDebugScript, "Inventory(...)");
|
||||||
|
|
||||||
if (strcmp(b1.u.str, "\"\"") != 0) {
|
if (strcmp(b1.u.str, "\"\"") != 0) {
|
||||||
Common::String *s = new Common::String(b1.u.str);
|
Common::String *s = new Common::String(b1.u.str);
|
||||||
MaskInfo *m = (MaskInfo *)malloc(sizeof(MaskInfo));
|
MaskInfo *m = (MaskInfo *)malloc(sizeof(MaskInfo));
|
||||||
@ -332,7 +322,6 @@ void fInventory(ArgArray args) {
|
|||||||
else
|
else
|
||||||
m->flag1 = NULL;
|
m->flag1 = NULL;
|
||||||
|
|
||||||
|
|
||||||
if (v2.type == NAME)
|
if (v2.type == NAME)
|
||||||
m->flag2 = v2.u.sym;
|
m->flag2 = v2.u.sym;
|
||||||
else
|
else
|
||||||
@ -342,7 +331,6 @@ void fInventory(ArgArray args) {
|
|||||||
g_private->_toTake = true;
|
g_private->_toTake = true;
|
||||||
|
|
||||||
Common::String *f;
|
Common::String *f;
|
||||||
|
|
||||||
if (strcmp(snd.u.str, "\"\"") != 0) {
|
if (strcmp(snd.u.str, "\"\"") != 0) {
|
||||||
f = new Common::String(snd.u.str);
|
f = new Common::String(snd.u.str);
|
||||||
} else {
|
} else {
|
||||||
@ -362,11 +350,9 @@ void fInventory(ArgArray args) {
|
|||||||
} else {
|
} else {
|
||||||
g_private->inventory.push_back(*bmp);
|
g_private->inventory.push_back(*bmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (v2.type == NAME)
|
if (v2.type == NAME)
|
||||||
v2.u.sym->u.val = 1;
|
v2.u.sym->u.val = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void fSetFlag(ArgArray args) {
|
void fSetFlag(ArgArray args) {
|
||||||
@ -398,7 +384,6 @@ void fExit(ArgArray args) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
e->rect = args[2].u.rect;
|
e->rect = args[2].u.rect;
|
||||||
//debug("Rect %d %d %d %d", args[2].u.rect->top, args[2].u.rect->left, args[2].u.rect->bottom, args[2].u.rect->right);
|
|
||||||
g_private->_exits.push_front(*e);
|
g_private->_exits.push_front(*e);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -465,7 +450,6 @@ void fLoopedSound(ArgArray args) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void fViewScreen(ArgArray args) {
|
void fViewScreen(ArgArray args) {
|
||||||
// assert types
|
// assert types
|
||||||
debugC(1, kPrivateDebugScript, "WARNING: ViewScreen not implemented!");
|
debugC(1, kPrivateDebugScript, "WARNING: ViewScreen not implemented!");
|
||||||
@ -506,24 +490,19 @@ void fMovie(ArgArray args) {
|
|||||||
debugC(1, kPrivateDebugScript, "movie %s already played", movie->c_str());
|
debugC(1, kPrivateDebugScript, "movie %s already played", movie->c_str());
|
||||||
g_private->_nextSetting = g_private->_repeatedMovieExit;
|
g_private->_nextSetting = g_private->_repeatedMovieExit;
|
||||||
}
|
}
|
||||||
//g_private->_nextSetting = new Common::String(args[1].u.str);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void fCRect(ArgArray args) {
|
void fCRect(ArgArray args) {
|
||||||
// assert types
|
// assert types
|
||||||
int x1, y1, x2, y2;
|
|
||||||
|
|
||||||
debugC(1, kPrivateDebugScript, "CRect(%d, %d, %d, %d)", args[0].u.val, args[1].u.val, args[2].u.val, args[3].u.val);
|
debugC(1, kPrivateDebugScript, "CRect(%d, %d, %d, %d)", args[0].u.val, args[1].u.val, args[2].u.val, args[3].u.val);
|
||||||
|
int x1, y1, x2, y2;
|
||||||
x1 = args[0].u.val;
|
x1 = args[0].u.val;
|
||||||
y1 = args[1].u.val;
|
y1 = args[1].u.val;
|
||||||
|
|
||||||
x2 = args[2].u.val;
|
x2 = args[2].u.val;
|
||||||
y2 = args[3].u.val;
|
y2 = args[3].u.val;
|
||||||
|
|
||||||
Datum *d = new Datum();
|
Datum *d = new Datum();
|
||||||
Common::Rect *rect = new Common::Rect(x1, y1, x2, y2);
|
Common::Rect *rect = new Common::Rect(x1, y1, x2, y2);
|
||||||
|
|
||||||
d->type = RECT;
|
d->type = RECT;
|
||||||
d->u.rect = rect;
|
d->u.rect = rect;
|
||||||
push(*d);
|
push(*d);
|
||||||
@ -551,7 +530,6 @@ void _fMask(ArgArray args, bool drawn) {
|
|||||||
|
|
||||||
int x = 0;
|
int x = 0;
|
||||||
int y = 0;
|
int y = 0;
|
||||||
|
|
||||||
char *f = args[0].u.str;
|
char *f = args[0].u.str;
|
||||||
char *e = args[1].u.str;
|
char *e = args[1].u.str;
|
||||||
Common::String *c = args[2].u.sym->name;
|
Common::String *c = args[2].u.sym->name;
|
||||||
@ -563,8 +541,6 @@ void _fMask(ArgArray args, bool drawn) {
|
|||||||
|
|
||||||
debugC(1, kPrivateDebugScript, "Mask(%s, %s, %s, %d, %d)", f, e, c->c_str(), x, y);
|
debugC(1, kPrivateDebugScript, "Mask(%s, %s, %s, %d, %d)", f, e, c->c_str(), x, y);
|
||||||
const Common::String *s = new Common::String(f);
|
const Common::String *s = new Common::String(f);
|
||||||
//if (drawed)
|
|
||||||
// g_private->loadImage(*s, x, y);
|
|
||||||
|
|
||||||
MaskInfo *m = (MaskInfo *)malloc(sizeof(MaskInfo));
|
MaskInfo *m = (MaskInfo *)malloc(sizeof(MaskInfo));
|
||||||
m->surf = g_private->loadMask(*s, x, y, drawn);
|
m->surf = g_private->loadMask(*s, x, y, drawn);
|
||||||
@ -616,10 +592,12 @@ void fAMRadioClip(ArgArray args) {
|
|||||||
assert(args.size() <= 4);
|
assert(args.size() <= 4);
|
||||||
fAddSound(args[0].u.str, "AMRadioClip");
|
fAddSound(args[0].u.str, "AMRadioClip");
|
||||||
}
|
}
|
||||||
|
|
||||||
void fPoliceClip(ArgArray args) {
|
void fPoliceClip(ArgArray args) {
|
||||||
assert(args.size() <= 4);
|
assert(args.size() <= 4);
|
||||||
fAddSound(args[0].u.str, "PoliceClip");
|
fAddSound(args[0].u.str, "PoliceClip");
|
||||||
}
|
}
|
||||||
|
|
||||||
void fPhoneClip(ArgArray args) {
|
void fPhoneClip(ArgArray args) {
|
||||||
if (args.size() == 2) {
|
if (args.size() == 2) {
|
||||||
debugC(1, kPrivateDebugScript, "Unimplemented PhoneClip special case");
|
debugC(1, kPrivateDebugScript, "Unimplemented PhoneClip special case");
|
||||||
@ -635,13 +613,11 @@ void fPhoneClip(ArgArray args) {
|
|||||||
char *clip = g_private->getRandomPhoneClip(args[0].u.str, i, j);
|
char *clip = g_private->getRandomPhoneClip(args[0].u.str, i, j);
|
||||||
fAddSound(clip, "PhoneClip", args[4].u.sym, args[5].u.val);
|
fAddSound(clip, "PhoneClip", args[4].u.sym, args[5].u.val);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void fSoundArea(ArgArray args) {
|
void fSoundArea(ArgArray args) {
|
||||||
// assert types
|
// assert types
|
||||||
char *n;
|
char *n;
|
||||||
|
|
||||||
if (args[1].type == NAME)
|
if (args[1].type == NAME)
|
||||||
n = (char *)args[1].u.sym->name->c_str();
|
n = (char *)args[1].u.sym->name->c_str();
|
||||||
else if (args[1].type == STRING)
|
else if (args[1].type == STRING)
|
||||||
@ -711,7 +687,6 @@ void fTimer(ArgArray args) {
|
|||||||
} else {
|
} else {
|
||||||
assert(0);
|
assert(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct FuncTable {
|
static struct FuncTable {
|
||||||
@ -719,13 +694,16 @@ static struct FuncTable {
|
|||||||
const char *name;
|
const char *name;
|
||||||
} funcTable[] = {
|
} funcTable[] = {
|
||||||
|
|
||||||
|
// Control flow
|
||||||
{ fChgMode, "ChgMode"},
|
{ fChgMode, "ChgMode"},
|
||||||
{ fResume, "Resume"},
|
{ fResume, "Resume"},
|
||||||
{ fgoto, "goto"},
|
{ fgoto, "goto"},
|
||||||
{ fSetFlag, "SetFlag"},
|
|
||||||
{ fSetModifiedFlag, "SetModifiedFlag"},
|
|
||||||
{ fTimer, "Timer"},
|
{ fTimer, "Timer"},
|
||||||
|
|
||||||
|
// Variables
|
||||||
|
{ fSetFlag, "SetFlag"},
|
||||||
|
{ fSetModifiedFlag, "SetModifiedFlag"},
|
||||||
|
|
||||||
// Sounds
|
// Sounds
|
||||||
{ fSound, "Sound"},
|
{ fSound, "Sound"},
|
||||||
{ fSoundEffect, "SoundEffect"},
|
{ fSoundEffect, "SoundEffect"},
|
||||||
@ -744,6 +722,7 @@ static struct FuncTable {
|
|||||||
{ fMaskDrawn, "MaskDrawn"},
|
{ fMaskDrawn, "MaskDrawn"},
|
||||||
{ fVSPicture, "VSPicture"},
|
{ fVSPicture, "VSPicture"},
|
||||||
{ fViewScreen, "ViewScreen"},
|
{ fViewScreen, "ViewScreen"},
|
||||||
|
{ fExit, "Exit"},
|
||||||
|
|
||||||
// Video
|
// Video
|
||||||
{ fTransition, "Transition"},
|
{ fTransition, "Transition"},
|
||||||
@ -754,11 +733,12 @@ static struct FuncTable {
|
|||||||
{ fDiaryInvList, "DiaryInvList"},
|
{ fDiaryInvList, "DiaryInvList"},
|
||||||
{ fDiaryGoLoc, "DiaryGoLoc"},
|
{ fDiaryGoLoc, "DiaryGoLoc"},
|
||||||
|
|
||||||
{ fExit, "Exit"},
|
// Main menu
|
||||||
{ fQuit, "Quit"},
|
{ fQuit, "Quit"},
|
||||||
{ fLoadGame, "LoadGame"},
|
{ fLoadGame, "LoadGame"},
|
||||||
{ fSaveGame, "SaveGame"},
|
{ fSaveGame, "SaveGame"},
|
||||||
{ fAskSave, "AskSave"},
|
{ fAskSave, "AskSave"},
|
||||||
|
{ fRestartGame, "RestartGame"},
|
||||||
|
|
||||||
// Dossiers
|
// Dossiers
|
||||||
{ fDossierAdd, "DossierAdd"},
|
{ fDossierAdd, "DossierAdd"},
|
||||||
@ -767,18 +747,17 @@ static struct FuncTable {
|
|||||||
{ fDossierPrevSuspect, "DossierPrevSuspect"},
|
{ fDossierPrevSuspect, "DossierPrevSuspect"},
|
||||||
{ fDossierNextSuspect, "DossierNextSuspect"},
|
{ fDossierNextSuspect, "DossierNextSuspect"},
|
||||||
|
|
||||||
|
// Inventory
|
||||||
{ fLoseInventory, "LoseInventory"},
|
{ fLoseInventory, "LoseInventory"},
|
||||||
{ fInventory, "Inventory"},
|
{ fInventory, "Inventory"},
|
||||||
{ fCRect, "CRect"},
|
|
||||||
{ fRestartGame, "RestartGame"},
|
|
||||||
|
|
||||||
// PoliceBust
|
// PoliceBust
|
||||||
{ fPoliceBust, "PoliceBust"},
|
{ fPoliceBust, "PoliceBust"},
|
||||||
{ fBustMovie, "BustMovie"},
|
{ fBustMovie, "BustMovie"},
|
||||||
|
|
||||||
// Others
|
// Others
|
||||||
|
|
||||||
{ fSafeDigit, "SafeDigit"},
|
{ fSafeDigit, "SafeDigit"},
|
||||||
|
{ fCRect, "CRect"},
|
||||||
|
|
||||||
{ 0, 0}
|
{ 0, 0}
|
||||||
};
|
};
|
||||||
@ -800,7 +779,6 @@ void call(char *name, ArgArray args) {
|
|||||||
|
|
||||||
void (*func)(ArgArray) = (void (*)(ArgArray)) _functions.getVal(n);
|
void (*func)(ArgArray) = (void (*)(ArgArray)) _functions.getVal(n);
|
||||||
func(args);
|
func(args);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // End of namespace Private
|
} // End of namespace Private
|
||||||
|
Loading…
Reference in New Issue
Block a user