diff options
author | Strangerke | 2011-12-26 21:30:46 +0100 |
---|---|---|
committer | Strangerke | 2012-04-06 08:18:25 +0200 |
commit | 1c441062a05c9ff256100179a746a84baa153c88 (patch) | |
tree | bc5c9d1f2c08377460afd027924ca782c0dd5603 /engines | |
parent | 4edebbe11174e9cd82c9d4495aece84b65f0adcf (diff) | |
download | scummvm-rg350-1c441062a05c9ff256100179a746a84baa153c88.tar.gz scummvm-rg350-1c441062a05c9ff256100179a746a84baa153c88.tar.bz2 scummvm-rg350-1c441062a05c9ff256100179a746a84baa153c88.zip |
MORTEVIELLE: Add namespace and standard header
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mortevielle/actions.cpp | 31 | ||||
-rw-r--r-- | engines/mortevielle/alert.cpp | 31 | ||||
-rw-r--r-- | engines/mortevielle/boite.cpp | 31 | ||||
-rw-r--r-- | engines/mortevielle/disk.cpp | 32 | ||||
-rw-r--r-- | engines/mortevielle/droite.cpp | 31 | ||||
-rw-r--r-- | engines/mortevielle/keyboard.cpp | 30 | ||||
-rw-r--r-- | engines/mortevielle/level15.cpp | 30 | ||||
-rw-r--r-- | engines/mortevielle/menu.cpp | 30 | ||||
-rw-r--r-- | engines/mortevielle/mor.cpp | 32 | ||||
-rw-r--r-- | engines/mortevielle/mor2.cpp | 31 | ||||
-rw-r--r-- | engines/mortevielle/mort.cpp | 30 | ||||
-rw-r--r-- | engines/mortevielle/mouse.cpp | 31 | ||||
-rw-r--r-- | engines/mortevielle/outtext.cpp | 31 | ||||
-rw-r--r-- | engines/mortevielle/ovd1.cpp | 31 | ||||
-rw-r--r-- | engines/mortevielle/parole.cpp | 30 | ||||
-rw-r--r-- | engines/mortevielle/parole2.cpp | 32 | ||||
-rw-r--r-- | engines/mortevielle/prog.cpp | 30 | ||||
-rw-r--r-- | engines/mortevielle/ques.cpp | 30 | ||||
-rw-r--r-- | engines/mortevielle/sprint.cpp | 31 | ||||
-rw-r--r-- | engines/mortevielle/taffich.cpp | 31 | ||||
-rw-r--r-- | engines/mortevielle/var_mor.cpp | 30 |
21 files changed, 638 insertions, 8 deletions
diff --git a/engines/mortevielle/actions.cpp b/engines/mortevielle/actions.cpp index 712a1148f7..e03a7a1627 100644 --- a/engines/mortevielle/actions.cpp +++ b/engines/mortevielle/actions.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + /* NIVEAU 4 */ const char stouinon[] = "[2][ ][OUI][NON]"; @@ -1189,3 +1218,5 @@ L2: quel = do_alert(stouinon, 1); arret = (quel != 1); } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/alert.cpp b/engines/mortevielle/alert.cpp index f1c69efe64..8372c2f9e3 100644 --- a/engines/mortevielle/alert.cpp +++ b/engines/mortevielle/alert.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + /* overlay */ int do_alert(Common::String str_, int n); @@ -195,3 +224,5 @@ int do_alert(Common::String str_, int n) { do_alert_result = quoi; return do_alert_result; } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/boite.cpp b/engines/mortevielle/boite.cpp index d1ebe4da38..20deae4950 100644 --- a/engines/mortevielle/boite.cpp +++ b/engines/mortevielle/boite.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + void boite(int x, int y, int dx, int dy, int coul) { int i; int xi, yi, xo, yo; @@ -27,3 +56,5 @@ void boite(int x, int y, int dx, int dy, int coul) { } show_mouse(); } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/disk.cpp b/engines/mortevielle/disk.cpp index 0e458a5033..e81e905d25 100644 --- a/engines/mortevielle/disk.cpp +++ b/engines/mortevielle/disk.cpp @@ -1,3 +1,31 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { void dem1() { untyped_file f; @@ -69,6 +97,4 @@ void sv_game(int n) { show_mouse(); } - - - +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/droite.cpp b/engines/mortevielle/droite.cpp index 20899ced8b..fcdfaeddfe 100644 --- a/engines/mortevielle/droite.cpp +++ b/engines/mortevielle/droite.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + void droite(int x, int y, int xx, int yy, int coul) { int step, i; float a, b; @@ -32,3 +61,5 @@ void droite(int x, int y, int xx, int yy, int coul) { /*writeln(le_file,'Y == ',a:3:3,' * X + ',b:3:3);*/ } } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/keyboard.cpp b/engines/mortevielle/keyboard.cpp index 199d43862f..f1d514bc68 100644 --- a/engines/mortevielle/keyboard.cpp +++ b/engines/mortevielle/keyboard.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + char readkey1() { char c; @@ -58,3 +87,4 @@ void teskbd() { if (keypressed()) dum = testou(); } +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/level15.cpp b/engines/mortevielle/level15.cpp index 35de7f439f..ce41c37f5c 100644 --- a/engines/mortevielle/level15.cpp +++ b/engines/mortevielle/level15.cpp @@ -1,3 +1,31 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { /* NIVEAU 15 */ void copcha() { @@ -173,3 +201,5 @@ begin Tan : afftan(offs,dep,x,y); end; end;*/ + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/menu.cpp b/engines/mortevielle/menu.cpp index cd72d7b87b..655e635d6f 100644 --- a/engines/mortevielle/menu.cpp +++ b/engines/mortevielle/menu.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + /* NIVEAU 14*/ /* overlay */ void menut(int no, Common::String nom) { @@ -332,3 +361,4 @@ void mdn() { } } +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/mor.cpp b/engines/mortevielle/mor.cpp index f32ca9672e..4129b24233 100644 --- a/engines/mortevielle/mor.cpp +++ b/engines/mortevielle/mor.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + /* Niveau 14 suite */ const char m1[] = "quelqu'un entre, parait ‚tonn‚ mais ne dit rien"; @@ -1307,5 +1336,4 @@ void dessin(int ad) { } } - - +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/mor2.cpp b/engines/mortevielle/mor2.cpp index d4bb50b253..cff21a5c10 100644 --- a/engines/mortevielle/mor2.cpp +++ b/engines/mortevielle/mor2.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + const array<1, 11, int> men = {{ scacher, attacher, defoncer, dormir, @@ -726,3 +755,5 @@ void aldepl() { dummy = do_alert("[1][Alors, utilisez le menu DEP...][ok]", 1); } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/mort.cpp b/engines/mortevielle/mort.cpp index c9e1d25d7e..5ed621f6b8 100644 --- a/engines/mortevielle/mort.cpp +++ b/engines/mortevielle/mort.cpp @@ -1,6 +1,33 @@ -#include "ptoc.h" +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +#include "ptoc.h" +namespace MORTEVIELLE { /*$v-*/ /*$k-*/ @@ -121,3 +148,4 @@ int main(int argc, const char *argv[]) { return EXIT_SUCCESS; } +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/mouse.cpp b/engines/mortevielle/mouse.cpp index 9ce1788b2c..a2102b6146 100644 --- a/engines/mortevielle/mouse.cpp +++ b/engines/mortevielle/mouse.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + const int m_arrow = 0; const int m_point_hand = 1; @@ -457,3 +486,5 @@ void mov_mouse(boolean &funct, char &key) { p_key = keypressed(); } } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/outtext.cpp b/engines/mortevielle/outtext.cpp index 4975185c37..b2ef115704 100644 --- a/engines/mortevielle/outtext.cpp +++ b/engines/mortevielle/outtext.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + Common::String delig; const byte tabdr[32] = { 32, 101, 115, 97, 114, 105, 110, @@ -197,3 +226,5 @@ void afftex(phrase ch, int x, int y, int dx, int dy, int typ) { } /* case */ } } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/ovd1.cpp b/engines/mortevielle/ovd1.cpp index 8545fae233..f8c7bafb9c 100644 --- a/engines/mortevielle/ovd1.cpp +++ b/engines/mortevielle/ovd1.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + void dem2() { untyped_file f; int k; @@ -335,3 +364,5 @@ void ani50() { writeg(cpr, 0); } } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/parole.cpp b/engines/mortevielle/parole.cpp index 082b53ec7b..63ede52cb2 100644 --- a/engines/mortevielle/parole.cpp +++ b/engines/mortevielle/parole.cpp @@ -1,3 +1,31 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { void spfrac(int wor) { c3.rep = (cardinal)wor >> 12; @@ -383,3 +411,5 @@ void veracf(byte b) { break; } /* case c2.code */ } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/parole2.cpp b/engines/mortevielle/parole2.cpp index 1b894ff6e6..c7516d17aa 100644 --- a/engines/mortevielle/parole2.cpp +++ b/engines/mortevielle/parole2.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + void rot_chariot() { c1 = c2; c2 = c3; @@ -90,5 +119,4 @@ void parole(int rep, int ht, int typ) { writepal(numpal); } - - +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/prog.cpp b/engines/mortevielle/prog.cpp index fd909a3164..b08be5cd3d 100644 --- a/engines/mortevielle/prog.cpp +++ b/engines/mortevielle/prog.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + /* overlay */ void change_gd(int ngd) { int i; @@ -317,3 +346,4 @@ void tjouer() { else if (perdu) tencore(); } +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/ques.cpp b/engines/mortevielle/ques.cpp index b109340f96..40a6e87c57 100644 --- a/engines/mortevielle/ques.cpp +++ b/engines/mortevielle/ques.cpp @@ -1,3 +1,31 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { /* overlay */ boolean ques() { const array<1, 10, int> ta @@ -111,3 +139,5 @@ ques_result = (compte == 10) && q; return ques_result; } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/sprint.cpp b/engines/mortevielle/sprint.cpp index d0b1e7cf66..2723d913ea 100644 --- a/engines/mortevielle/sprint.cpp +++ b/engines/mortevielle/sprint.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + void fill_box(int x, int y, int dx) { box(15, gd, pred(int, x) << 3, pred(int, y) << 3, pred(int, x + dx) << 3, y << 3, 255); } @@ -52,3 +81,5 @@ void writeg(Common::String l, int c) } show_mouse(); } + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/taffich.cpp b/engines/mortevielle/taffich.cpp index 058af875d7..8e4562e499 100644 --- a/engines/mortevielle/taffich.cpp +++ b/engines/mortevielle/taffich.cpp @@ -1,3 +1,32 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { + void chardes(Common::String nom, long_int passe, int long_) { int i, p, l; byte b; @@ -194,3 +223,5 @@ void taffich() { Alllum[k]:=-1; end; end;*/ + +} // End of namespace MORTEVIELLE diff --git a/engines/mortevielle/var_mor.cpp b/engines/mortevielle/var_mor.cpp index e245781736..027dfb2d68 100644 --- a/engines/mortevielle/var_mor.cpp +++ b/engines/mortevielle/var_mor.cpp @@ -1,3 +1,31 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +/* + * This code is based on original Mortville Manor DOS source code + * Copyright (c) 1988-1989 Lankhor + */ + +namespace MORTEVIELLE { /* Constantes, Types et Variables pour le @@ -454,3 +482,5 @@ void affcar(int gd, int x, int y, int coul, int char) { void putpix(int gd, int x, int y, int coul) { affput(0, gd, x, y, coul, 0); } + +} // End of namespace MORTEVIELLE |