From 6acbbe1321664d95cf0b4cd990bc0dae03d329a2 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Thu, 22 Feb 2001 21:46:46 +0000 Subject: [PATCH] Einbau des letzten Bugfixes --- src/common/attributes/attributes-6.dsp | 4 +-- src/common/gamecode/gamecode-6.dsp | 4 +-- src/common/gamecode/monster.c | 8 +++--- src/common/gamecode/spy.c | 4 +-- src/common/items/items-6.dsp | 2 +- src/common/kernel/eressea.c | 2 +- src/common/kernel/kernel-6.dsp | 12 +++++++-- src/common/kernel/pathfinder.h | 3 +-- src/common/kernel/save.c | 8 +++--- src/common/modules/modules-6.dsp | 2 +- src/common/races/races-6.dsp | 2 +- src/common/spells/spells-6.dsp | 2 +- src/common/util/util-6.dsp | 18 ++++++++++++- src/enno.mk | 4 +-- src/eressea-6.dsw | 12 --------- src/eressea/eressea-6.dsp | 36 +++----------------------- src/mapper/mapper-6.dsp | 2 +- 17 files changed, 52 insertions(+), 73 deletions(-) diff --git a/src/common/attributes/attributes-6.dsp b/src/common/attributes/attributes-6.dsp index cf109778b..13857dade 100644 --- a/src/common/attributes/attributes-6.dsp +++ b/src/common/attributes/attributes-6.dsp @@ -166,11 +166,11 @@ SOURCE=.\orcification.c # End Source File # Begin Source File -SOURCE=.\reduceproduction.c +SOURCE=.\overrideroads.c # End Source File # Begin Source File -SOURCE=.\roadsoverride.c +SOURCE=.\reduceproduction.c # End Source File # Begin Source File diff --git a/src/common/gamecode/gamecode-6.dsp b/src/common/gamecode/gamecode-6.dsp index e8970cd34..8f66171b7 100644 --- a/src/common/gamecode/gamecode-6.dsp +++ b/src/common/gamecode/gamecode-6.dsp @@ -66,7 +66,7 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../kernel" /I "../util" /I ".." /I "../.." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c +# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../kernel" /I "../util" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c # ADD BASE RSC /l 0x407 # ADD RSC /l 0x407 BSC32=bscmake.exe @@ -90,7 +90,7 @@ LIB32=link.exe -lib # PROP Target_Dir "" # ADD BASE CPP /nologo /MDd /Za /W4 /Z7 /Od /I ".." /I "../util" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /FR /FD /c # SUBTRACT BASE CPP /YX -# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../util" /I "../kernel" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /FD /c +# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../util" /I "../kernel" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "CONVERT_TRIGGER" /FR /FD /c # SUBTRACT CPP /YX # ADD BASE RSC /l 0x407 # ADD RSC /l 0x407 diff --git a/src/common/gamecode/monster.c b/src/common/gamecode/monster.c index d1eeb276e..ae489eaf2 100644 --- a/src/common/gamecode/monster.c +++ b/src/common/gamecode/monster.c @@ -1,6 +1,6 @@ /* vi: set ts=2: * - * $Id: monster.c,v 1.8 2001/02/04 11:34:52 katze Exp $ + * $Id: monster.c,v 1.9 2001/02/22 21:46:44 enno Exp $ * Eressea PB(E)M host Copyright (C) 1998-2000 * Christian Schlittchen (corwin@amber.kn-bremen.de) * Katja Zedel (katze@felidae.kn-bremen.de) @@ -874,8 +874,11 @@ plan_monsters(void) } else a_remove(&u->attribs, ta); } - +#ifdef CONVERT_TRIGGER + ta = set_new_dragon_target(u, r, DRAGON_RANGE); +#else ta = a_find(u->attribs, &at_targetregion); +#endif if (ta!=NULL) { tr = (region *) ta->data.v; if (tr != r) is_moving = true; @@ -930,7 +933,6 @@ plan_monsters(void) set_item(u, I_STONE, 0); set_item(u, I_WOOD, 0); set_item(u, I_IRON, 0); - if (rand() % 100 < 4) { /* dragon gets bored and looks for a different place to go */ ta = set_new_dragon_target(u, r, DRAGON_RANGE); diff --git a/src/common/gamecode/spy.c b/src/common/gamecode/spy.c index 76b123637..96245a8df 100644 --- a/src/common/gamecode/spy.c +++ b/src/common/gamecode/spy.c @@ -1,6 +1,6 @@ /* vi: set ts=2: * - * $Id: spy.c,v 1.5 2001/02/19 16:45:23 katze Exp $ + * $Id: spy.c,v 1.6 2001/02/22 21:46:44 enno Exp $ * Eressea PB(E)M host Copyright (C) 1998-2000 * Christian Schlittchen (corwin@amber.kn-bremen.de) * Katja Zedel (katze@felidae.kn-bremen.de) @@ -118,7 +118,7 @@ setstealth(unit * u, strlist * S) /* Pseudodrachen auch */ - if (u->race == RC_PSEUDODRAGON || RC_BIRTHDAYDRAGON) { + if (u->race == RC_PSEUDODRAGON || u->race == RC_BIRTHDAYDRAGON) { t = findrace(s); if(t==RC_PSEUDODRAGON||t==RC_FIREDRAGON||t==RC_DRAGON||t==RC_WYRM) { u->irace = t; diff --git a/src/common/items/items-6.dsp b/src/common/items/items-6.dsp index 5b0a97425..dba4e31c7 100644 --- a/src/common/items/items-6.dsp +++ b/src/common/items/items-6.dsp @@ -64,7 +64,7 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../util" /I "../kernel" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c +# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../kernel" /I "../util" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c # ADD BASE RSC /l 0x407 # ADD RSC /l 0x407 BSC32=bscmake.exe diff --git a/src/common/kernel/eressea.c b/src/common/kernel/eressea.c index 948ae1087..3979bd5b7 100644 --- a/src/common/kernel/eressea.c +++ b/src/common/kernel/eressea.c @@ -1,6 +1,6 @@ /* vi: set ts=2: * - * $Id: eressea.c,v 1.20 2001/02/20 08:43:59 enno Exp $ + * $Id: eressea.c,v 1.21 2001/02/22 21:46:44 enno Exp $ * Eressea PB(E)M host Copyright (C) 1998-2000 * Christian Schlittchen (corwin@amber.kn-bremen.de) * Katja Zedel (katze@felidae.kn-bremen.de) diff --git a/src/common/kernel/kernel-6.dsp b/src/common/kernel/kernel-6.dsp index 4f1ea9c72..2d40e43ff 100644 --- a/src/common/kernel/kernel-6.dsp +++ b/src/common/kernel/kernel-6.dsp @@ -43,7 +43,7 @@ RSC=rc.exe # PROP Intermediate_Dir "Release" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /Za /W4 /GX /Z7 /O2 /I "../util" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "NDEBUG" /YX /FD /c +# ADD CPP /nologo /Za /W4 /GX /Z7 /O2 /I "../util" /I "../.." /I ".." /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c # ADD BASE RSC /l 0x407 # ADD RSC /l 0x407 BSC32=bscmake.exe @@ -89,7 +89,7 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "Conversion" # PROP Target_Dir "" # ADD BASE CPP /nologo /Za /W4 /Z7 /Od /I "../util" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c -# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../util" /I "../.." /I ".." /D "_WINDOWS" /D "BETA_CODE" /D "CONVERT_TRIGGER" /D "WIN32" /D "_DEBUG" /FR /YX"stdafx.h" /FD /c +# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../util" /I "../.." /I ".." /D "CONVERT_TRIGGER" /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /FR /YX"stdafx.h" /FD /c # ADD BASE RSC /l 0x407 # ADD RSC /l 0x407 BSC32=bscmake.exe @@ -155,10 +155,18 @@ SOURCE=.\building.h # End Source File # Begin Source File +SOURCE=.\creation.h +# End Source File +# Begin Source File + SOURCE=.\curse.h # End Source File # Begin Source File +SOURCE=.\economy.h +# End Source File +# Begin Source File + SOURCE=.\eressea.h # End Source File # Begin Source File diff --git a/src/common/kernel/pathfinder.h b/src/common/kernel/pathfinder.h index d48238e4c..07f0a5619 100644 --- a/src/common/kernel/pathfinder.h +++ b/src/common/kernel/pathfinder.h @@ -1,6 +1,6 @@ /* vi: set ts=2: * - * $Id: pathfinder.h,v 1.2 2001/01/26 16:19:40 enno Exp $ + * $Id: pathfinder.h,v 1.3 2001/02/22 21:46:44 enno Exp $ * Eressea PB(E)M host Copyright (C) 1998-2000 * Christian Schlittchen (corwin@amber.kn-bremen.de) * Katja Zedel (katze@felidae.kn-bremen.de) @@ -19,7 +19,6 @@ extern int search_len; #define NEW_PATH #ifdef NEW_PATH -extern void path_init(void); extern struct region ** path_find(struct region *start, const struct region *target, int maxlen, boolean (*allowed)(const struct region*, const struct region*)); extern boolean path_exists(struct region *start, const struct region *target, int maxlen, boolean (*allowed)(const struct region*, const struct region*)); extern boolean allowed_swim(const struct region * src, const struct region * target); diff --git a/src/common/kernel/save.c b/src/common/kernel/save.c index 2203d6c1a..594a3d79d 100644 --- a/src/common/kernel/save.c +++ b/src/common/kernel/save.c @@ -1,6 +1,6 @@ /* vi: set ts=2: * - * $Id: save.c,v 1.20 2001/02/18 10:06:09 enno Exp $ + * $Id: save.c,v 1.21 2001/02/22 21:46:44 enno Exp $ * Eressea PB(E)M host Copyright (C) 1998-2000 * Christian Schlittchen (corwin@amber.kn-bremen.de) * Katja Zedel (katze@felidae.kn-bremen.de) @@ -44,9 +44,7 @@ #include "karma.h" #include "ship.h" #include "pathfinder.h" -#ifdef GROUPS #include "group.h" -#endif /* attributes includes */ #include @@ -1518,7 +1516,7 @@ write_items(FILE *F, item *ilist) wi(F, itm->number); wspace(F); } - ws(F, "end"); + fputs("end", F); } void @@ -1743,7 +1741,7 @@ writegame(char *path, char quiet) wi(F, demand->value); wspace(F); } - ws(F, "end"); + fputs("end", F); wnl(F); } a_write(F, r->attribs); diff --git a/src/common/modules/modules-6.dsp b/src/common/modules/modules-6.dsp index 72282fcae..d6a3cedf8 100644 --- a/src/common/modules/modules-6.dsp +++ b/src/common/modules/modules-6.dsp @@ -64,7 +64,7 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../util" /I "../kernel" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c +# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../kernel" /I "../util" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c # ADD BASE RSC /l 0x407 # ADD RSC /l 0x407 BSC32=bscmake.exe diff --git a/src/common/races/races-6.dsp b/src/common/races/races-6.dsp index c9e119c0a..f36d478fd 100644 --- a/src/common/races/races-6.dsp +++ b/src/common/races/races-6.dsp @@ -64,7 +64,7 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../util" /I "../kernel" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c +# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../kernel" /I "../util" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c # ADD BASE RSC /l 0x407 # ADD RSC /l 0x407 BSC32=bscmake.exe diff --git a/src/common/spells/spells-6.dsp b/src/common/spells/spells-6.dsp index 38234d67a..6bcb1b2cb 100644 --- a/src/common/spells/spells-6.dsp +++ b/src/common/spells/spells-6.dsp @@ -64,7 +64,7 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../util" /I "../kernel" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c +# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../kernel" /I "../util" /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c # ADD BASE RSC /l 0x407 # ADD RSC /l 0x407 BSC32=bscmake.exe diff --git a/src/common/util/util-6.dsp b/src/common/util/util-6.dsp index c3fe48464..cfc758713 100644 --- a/src/common/util/util-6.dsp +++ b/src/common/util/util-6.dsp @@ -89,7 +89,7 @@ LIB32=link.exe -lib # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" # ADD BASE CPP /nologo /Za /W4 /Z7 /Od /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c -# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../.." /I ".." /D "_WINDOWS" /D "BETA_CODE" /D "WIN32" /D "_DEBUG" /FR /YX"stdafx.h" /FD /c +# ADD CPP /nologo /Za /W4 /Z7 /Od /I "../.." /I ".." /D "_WINDOWS" /D "WIN32" /D "_DEBUG" /FR /YX"stdafx.h" /FD /c # ADD BASE RSC /l 0x407 # ADD RSC /l 0x407 BSC32=bscmake.exe @@ -143,6 +143,10 @@ SOURCE=.\base36.h # End Source File # Begin Source File +SOURCE=.\crmessage.h +# End Source File +# Begin Source File + SOURCE=.\cvector.h # End Source File # Begin Source File @@ -171,6 +175,14 @@ SOURCE=.\log.h # End Source File # Begin Source File +SOURCE=.\message.h +# End Source File +# Begin Source File + +SOURCE=.\nrmessage.h +# End Source File +# Begin Source File + SOURCE=.\rand.h # End Source File # Begin Source File @@ -179,6 +191,10 @@ SOURCE=.\resolve.h # End Source File # Begin Source File +SOURCE=.\translation.h +# End Source File +# Begin Source File + SOURCE=.\umlaut.h # End Source File # Begin Source File diff --git a/src/enno.mk b/src/enno.mk index 438d83a8f..f24f12e01 100644 --- a/src/enno.mk +++ b/src/enno.mk @@ -2,9 +2,7 @@ ## enable some new features in the source: # -CONVERT_TRIGGERS = 1 - -#CFLAGS += -DUSE_GM_COMMANDS -DTEST_GM_COMMANDS +#CONVERT_TRIGGERS = 1 LD=gcc AR=ar diff --git a/src/eressea-6.dsw b/src/eressea-6.dsw index d95a85463..6e7c3e9be 100644 --- a/src/eressea-6.dsw +++ b/src/eressea-6.dsw @@ -54,18 +54,6 @@ Package=<4> ############################################################################### -Project: "echeck"=..\echeck\echeck.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - Project: "eressea"=".\eressea\eressea-6.dsp" - Package Owner=<4> Package=<5> diff --git a/src/eressea/eressea-6.dsp b/src/eressea/eressea-6.dsp index a0c42bb20..c0b6f57ad 100644 --- a/src/eressea/eressea-6.dsp +++ b/src/eressea/eressea-6.dsp @@ -44,7 +44,7 @@ RSC=rc.exe # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /Za /W4 /GX /Z7 /O2 /I ".." /I "../common" /I "../common/util" /I "../common/kernel" /I "../common/gamecode" /D "_CONSOLE" /D "_MBCS" /D "WIN32" /D "NDEBUG" /FR /YX /FD /c +# ADD CPP /nologo /Za /W4 /GX /Z7 /O2 /I ".." /I "../common" /I "../common/util" /I "../common/kernel" /I "../common/gamecode" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD BASE RSC /l 0x407 /d "NDEBUG" # ADD RSC /l 0x407 /d "NDEBUG" BSC32=bscmake.exe @@ -68,7 +68,7 @@ LINK32=link.exe # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /Za /W4 /Gm /ZI /Od /I "../common/gamecode" /I "../common/kernel" /I "../common/util" /I ".." /I "../common" /D "_CONSOLE" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c +# ADD CPP /nologo /Za /W4 /Gm /ZI /Od /I "../common/kernel" /I "../common/gamecode" /I "../common/util" /I "../common" /I ".." /D "_CONSOLE" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c # ADD BASE RSC /l 0x407 /d "_DEBUG" # ADD RSC /l 0x407 /d "_DEBUG" BSC32=bscmake.exe @@ -94,7 +94,7 @@ LINK32=link.exe # PROP Target_Dir "" # ADD BASE CPP /nologo /MDd /Za /W4 /Gm /Zi /Od /I ".." /I "../util" /I "../common" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /FD /c # SUBTRACT BASE CPP /YX -# ADD CPP /nologo /Za /W4 /Gm /ZI /Od /I ".." /I "../common" /I "../common/util" /I "../common/kernel" /I "../common/gamecode" /D "_CONSOLE" /D "_MBCS" /D "CONVERT_TRIGGER" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /FD /c +# ADD CPP /nologo /Za /W4 /Gm /ZI /Od /I ".." /I "../common" /I "../common/util" /I "../common/kernel" /I "../common/gamecode" /D "_CONSOLE" /D "_MBCS" /D "CONVERT_TRIGGER" /D "WIN32" /D "_DEBUG" /FR /FD /c # SUBTRACT CPP /YX # ADD BASE RSC /l 0x407 /d "_DEBUG" # ADD RSC /l 0x407 /d "_DEBUG" @@ -837,36 +837,6 @@ SOURCE=..\common\attributes\giveitem.h # Begin Source File SOURCE=..\common\attributes\gm.c - -!IF "$(CFG)" == "eressea - Win32 Release" - -!ELSEIF "$(CFG)" == "eressea - Win32 Debug" - -# PROP Intermediate_Dir "..\common\attributes\Debug" - -!ELSEIF "$(CFG)" == "eressea - Win32 Conversion" - -!ELSEIF "$(CFG)" == "eressea - Win32 Profile" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\common\attributes\gm.h - -!IF "$(CFG)" == "eressea - Win32 Release" - -!ELSEIF "$(CFG)" == "eressea - Win32 Debug" - -# PROP Intermediate_Dir "..\common\attributes\Debug" - -!ELSEIF "$(CFG)" == "eressea - Win32 Conversion" - -!ELSEIF "$(CFG)" == "eressea - Win32 Profile" - -!ENDIF - # End Source File # Begin Source File diff --git a/src/mapper/mapper-6.dsp b/src/mapper/mapper-6.dsp index 35fb2f16c..58c1c583c 100644 --- a/src/mapper/mapper-6.dsp +++ b/src/mapper/mapper-6.dsp @@ -66,7 +66,7 @@ LINK32=link.exe # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /Za /W4 /Gm /ZI /Od /I ".." /I "../common" /I "../common/util" /I "../common/kernel" /I "../common/gamecode" /D "_CONSOLE" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c +# ADD CPP /nologo /Za /W4 /Gm /ZI /Od /I "../common/kernel" /I "../common/gamecode" /I "../common/util" /I "../common" /I ".." /D "_CONSOLE" /D "_MBCS" /D "WIN32" /D "_DEBUG" /D "BETA_CODE" /FR /YX"stdafx.h" /FD /c # ADD BASE RSC /l 0x407 /d "_DEBUG" # ADD RSC /l 0x407 /d "_DEBUG" BSC32=bscmake.exe