Index: DirectX/DDraw/DirectDraw.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DDraw/DirectDraw.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirectDraw.cpp --- DirectX/DDraw/DirectDraw.cpp 1 Dec 2002 17:19:35 -0000 1.1 +++ DirectX/DDraw/DirectDraw.cpp 30 Aug 2003 00:58:50 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "DirectDraw.hpp" #include "DirectDrawError.hpp" #include "gapp.hpp" #define _FPU_ALIGN (16) #define _MMX_ALIGN (16) #define _COPY_TYPE_BYTE_THRESHOLD (46) Index: DirectX/DDraw/DirectDraw.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DDraw/DirectDraw.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirectDraw.hpp --- DirectX/DDraw/DirectDraw.hpp 1 Dec 2002 17:19:35 -0000 1.1 +++ DirectX/DDraw/DirectDraw.hpp 30 Aug 2003 00:58:50 -0000 @@ -12,21 +12,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __DirectDraw_hpp__ #define __DirectDraw_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "DirectDrawPalette.hpp" enum { VIDEO_MODE_WINDOWED = 0x01, VIDEO_MODE_TRIPLE_BUFFER = 0x02, VIDEO_MODE_DOUBLE_BUFFER = 0x04, VIDEO_MODE_AUTO_FBUFFER = 0x08, VIDEO_MODE_FORCE_MODE_SWITCH = 0x10, }; enum { BLIT_FUNC_MMX, Index: DirectX/DDraw/DirectDrawError.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DDraw/DirectDrawError.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirectDrawError.cpp --- DirectX/DDraw/DirectDrawError.cpp 1 Dec 2002 17:19:35 -0000 1.1 +++ DirectX/DDraw/DirectDrawError.cpp 30 Aug 2003 00:58:50 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include #include #include #include #include "DirectDrawError.hpp" /* Msg Index: DirectX/DDraw/DirectDrawError.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DDraw/DirectDrawError.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirectDrawError.hpp --- DirectX/DDraw/DirectDrawError.hpp 1 Dec 2002 17:19:35 -0000 1.1 +++ DirectX/DDraw/DirectDrawError.hpp 30 Aug 2003 00:58:50 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __ERROR_H__ #define __ERROR_H__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #ifdef __cplusplus extern "C" { #endif /* Msg * Displays a message box containing the given formatted string. */ void __cdecl Index: DirectX/DDraw/DirectDrawPalette.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DDraw/DirectDrawPalette.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirectDrawPalette.cpp --- DirectX/DDraw/DirectDrawPalette.cpp 1 Dec 2002 17:19:35 -0000 1.1 +++ DirectX/DDraw/DirectDrawPalette.cpp 30 Aug 2003 00:58:50 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "DirectDrawPalette.hpp" #include "DirectDrawError.hpp" #include "gapp.hpp" //--------------------------------------------------------------------------- DirectDrawPalette::DirectDrawPalette() { DirectDrawPalette::logPaletteHandle = NULL; DirectDrawPalette::systemPaletteHandle = NULL; Index: DirectX/DDraw/DirectDrawPalette.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DDraw/DirectDrawPalette.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirectDrawPalette.hpp --- DirectX/DDraw/DirectDrawPalette.hpp 1 Dec 2002 17:19:35 -0000 1.1 +++ DirectX/DDraw/DirectDrawPalette.hpp 30 Aug 2003 00:58:50 -0000 @@ -12,21 +12,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __DirectDrawPalette_hpp__ #define __DirectDrawPalette_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Palette.hpp" struct LogicalPalette { WORD palVersion; WORD palNumEntries; PALETTEENTRY palPalEntry[256]; }; Index: DirectX/DirectInput/DirectInput.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DirectInput/DirectInput.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirectInput.cpp --- DirectX/DirectInput/DirectInput.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ DirectX/DirectInput/DirectInput.cpp 30 Aug 2003 00:58:50 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "DirectInput.hpp" #include "gapp.hpp" LPDIRECTINPUT DirectInput::lpDInput = NULL; LPDIRECTINPUTDEVICE DirectInput::lpDIKeyDevice = NULL; BOOL DirectInput::initialize( void ) { HRESULT hresult; Index: DirectX/DirectPlay/DPlayError.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DirectPlay/DPlayError.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DPlayError.cpp --- DirectX/DirectPlay/DPlayError.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ DirectX/DirectPlay/DPlayError.cpp 30 Aug 2003 00:58:50 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "DPlayError.hpp" char * DPlayErrorToString( HRESULT error ) { switch( error ) { case DPERR_ACCESSDENIED : Index: DirectX/DirectPlay/DirectPlay.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DirectPlay/DirectPlay.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirectPlay.cpp --- DirectX/DirectPlay/DirectPlay.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ DirectX/DirectPlay/DirectPlay.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #define INITGUID -#include +#include #include #include #include #include #include //not included by shlobj.h because INITGUID is defined WILL THIS MEAN PROBLEMS? //#include #include "DirectPlay.h" Index: DirectX/DirectSound/DSound.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DirectSound/DSound.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DSound.cpp --- DirectX/DirectSound/DSound.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ DirectX/DirectSound/DSound.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include #include "DSound.hpp" #include "sfx.h" #include "wavfile.h" #include "wave.h" #include "stdio.h" DirectSound dsound; Index: DirectX/DirectSound/wave.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/DirectX/DirectSound/wave.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 wave.cpp --- DirectX/DirectSound/wave.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ DirectX/DirectSound/wave.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include #include #include "wave.h" #include "assert.h" #include "windowsx.h" // This function will open a wave input file and prepare it for reading, // so the data can be easily read with WaveReadFile. Returns 0 if Index: Lib/LibView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/LibView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 LibView.cpp --- Lib/LibView.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/LibView.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "LibView.hpp" #include "Desktop.hpp" #include "ParticleSystem2D.hpp" #include "Particle2D.hpp" #include "GameConfig.hpp" #include "HostOptionsView.hpp" #include "GameViewGlobals.hpp" #include "UtilInterface.hpp" #include "TimerInterface.hpp" #include "PackedSurface.hpp" Index: Lib/Math.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Math.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Math.cpp --- Lib/Math.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Math.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Math.hpp" float Math::cosTable[360 + 1]; float Math::sinTable[360 + 1]; // rad2Deg //-------------------------------------------------------------------------- // Purpose: Converts from radians to degrees. Index: Lib/Math.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Math.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Math.hpp --- Lib/Math.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Math.hpp 30 Aug 2003 00:58:51 -0000 @@ -17,21 +17,21 @@ */ #ifndef __Math_hpp__ #define __Math_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "fXY.hpp" #include "iXY.hpp" const double PI_DIV_2 = 3.14159265358979323846 / 2.0; static double deg2RadConversion = PI / 180.0; static double rad2DegConversion = 180.0 / PI; //-------------------------------------------------------------------------- class Math Index: Lib/Physics.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Physics.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Physics.cpp --- Lib/Physics.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/Physics.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Physics.hpp" #include "TimerInterface.hpp" #include "Math.hpp" Physics::Wind Physics::wind; float Physics::gravity; fXY Physics::directionTable[DIRECTION_TABLE_COUNT]; //-------------------------------------------------------------------------- Index: Lib/Stdafx.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Stdafx.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Stdafx.hpp --- Lib/Stdafx.hpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/Stdafx.hpp 30 Aug 2003 00:58:51 -0000 @@ -17,20 +17,21 @@ */ #ifndef __stdafx_hpp__ #define __stdafx_hpp__ #if _MSC_VER > 1000 #pragma once #endif +#ifndef linux #include #include #include #include #include #include #include #include #include @@ -44,20 +45,22 @@ #include #include #include #include #include #include #include #include #include + +#endif //linux #include "codewiz.hpp" #ifndef __LibTypes_hpp__ #include "LibTypes.hpp" #endif #ifndef WIN32_EXTRA_LEAN #define WIN32_EXTRA_LEAN #endif Index: Lib/cGrowList.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/cGrowList.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 cGrowList.hpp --- Lib/cGrowList.hpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/cGrowList.hpp 30 Aug 2003 00:58:51 -0000 @@ -17,21 +17,21 @@ */ #ifndef __cGrowlist_hpp__ #define __cGrowlist_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "codewiz.hpp" template class cGrowList { protected: int count; TYPE *array; int alloced; Index: Lib/cMouse.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/cMouse.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 cMouse.cpp --- Lib/cMouse.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/cMouse.cpp 30 Aug 2003 00:58:51 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "cMouse.hpp" ///////////////////////////////////////////////////////////////////////////// // Statics. ///////////////////////////////////////////////////////////////////////////// cMouse mouse; Surface *cMouse::pointer = NULL; Index: Lib/cMouse.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/cMouse.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 cMouse.hpp --- Lib/cMouse.hpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/cMouse.hpp 30 Aug 2003 00:58:51 -0000 @@ -17,21 +17,21 @@ */ #ifndef __cMouse_hpp__ #define __cMouse_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Surface.hpp" #include "Surface.hpp" #include "iXY.hpp" #include "Win32Mouse.hpp" #define LMOUSE_BUTTON_MASK 0x01 #define MMOUSE_BUTTON_MASK 0x02 #define RMOUSE_BUTTON_MASK 0x04 Index: Lib/cSafeString.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/cSafeString.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 cSafeString.cpp --- Lib/cSafeString.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/cSafeString.cpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ //*************************************************************************** // includes //*************************************************************************** -#include "stdafx.hpp" +#include "Stdafx.hpp" //*************************************************************************** // code //*************************************************************************** //--------------------------------------------------------------------------- void safeStrcpy(char *dest, size_t destSize, const char *src) { if (dest == NULL || destSize <= 0) return; if (src == NULL) { Index: Lib/cTimeStamp.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/cTimeStamp.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 cTimeStamp.cpp --- Lib/cTimeStamp.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/cTimeStamp.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "cTimeStamp.hpp" //*************************************************************************** // local data //*************************************************************************** bool gTimeSliceFlag = false; Index: Lib/cTimeStamp.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/cTimeStamp.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 cTimeStamp.hpp --- Lib/cTimeStamp.hpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/cTimeStamp.hpp 30 Aug 2003 00:58:51 -0000 @@ -17,21 +17,21 @@ */ #ifndef __cTimeStamp_hpp__ #define __cTimeStamp_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "WinTimer.hpp" // ***** REMOVED FOR WIN95 PORTING #if _MSC_VER > 1000 #pragma once #endif Index: Lib/loadSaveData.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/loadSaveData.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 loadSaveData.cpp --- Lib/loadSaveData.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/loadSaveData.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "loadSaveData.hpp" #include "JoystickInterface.hpp" void loadDataFromDisk() { char strBuf[256]; mkdir("data"); FILE *fp = fopen("data\\joystick.dat", "rt"); Index: Lib/log.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/log.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 log.cpp --- Lib/log.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/log.cpp 30 Aug 2003 00:58:51 -0000 @@ -18,21 +18,21 @@ // Original source 03/18/97 // //--------------------------------------------------------------------------- #ifdef _LOGGING_ON //*************************************************************************** // includes //*************************************************************************** -#include "stdafx.hpp" +#include "Stdafx.hpp" //*************************************************************************** // global data //*************************************************************************** const CALL_STACK *CALL_STACK::top = NULL; char const *__logFile = NULL; unsigned __logLine = 0; unsigned __logDepth = 0; Index: Lib/terminate.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/terminate.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 terminate.cpp --- Lib/terminate.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/terminate.cpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ //*************************************************************************** // includes //*************************************************************************** -#include "stdafx.hpp" +#include "Stdafx.hpp" #include //*************************************************************************** // constants //*************************************************************************** const size_t MAX_CLEANUP_FUNCS = 30; //*************************************************************************** Index: Lib/2D/Color.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/Color.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Color.cpp --- Lib/2D/Color.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/Color.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Color.hpp" BYTE Color::unitAqua; BYTE Color::unitYellow; BYTE Color::unitRed; BYTE Color::unitBlue; BYTE Color::unitDarkBlue; BYTE Color::unitLightGreen; BYTE Color::unitGreen; BYTE Color::unitBlueGray; Index: Lib/2D/ColorTable.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/ColorTable.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ColorTable.cpp --- Lib/2D/ColorTable.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/ColorTable.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ColorTable.hpp" #include "Palette.hpp" #include "UtilInterface.hpp" char *ColorTable::extension = ".tbl"; int ColorTable::totalColorArrayCount = 0; int ColorTable::totalByteCount = 0; Index: Lib/2D/ColorTable.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/ColorTable.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ColorTable.hpp --- Lib/2D/ColorTable.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/ColorTable.hpp 30 Aug 2003 00:58:51 -0000 @@ -17,21 +17,21 @@ */ #ifndef __ColorTable_hpp__ #define __ColorTable_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" //-------------------------------------------------------------------------- class ColorTable { friend class Palette; protected: static char *extension; Index: Lib/2D/DigitText.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/DigitText.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DigitText.cpp --- Lib/2D/DigitText.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/DigitText.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "DigitText.hpp" Surface DigitText::charactersNormal; Surface DigitText::charactersNoSpace; DIGIT_BLT_MODES DigitText::bltMode = NORMAL_TRANS; // init //-------------------------------------------------------------------------- Index: Lib/2D/FontSystem2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/FontSystem2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FontSystem2D.cpp --- Lib/2D/FontSystem2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/FontSystem2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "FontSystem2D.hpp" #include "TimerInterface.hpp" static FontSystem2D theRealZFontSystem2D(iXY(0, 0), "theRealZFontSystem2D", screen, 0.0f, Color::white); FontSystem2D *const FontSystem2D::zFontSystem2D = &theRealZFontSystem2D; unsigned FontSystem2D::fontSystemCount = 0; float FontSystem2D::scrollSpeed = 0.005f; //--------------------------------------------------------------------------- Index: Lib/2D/PackedSurface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/PackedSurface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PackedSurface.cpp --- Lib/2D/PackedSurface.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/PackedSurface.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "packedsurface.hpp" #include "Surface.hpp" #include "TimerInterface.hpp" #include "Span.hpp" #include "UtilInterface.hpp" extern void fastMemcpy(void *dest, const void *src, int n); //#define memcpy fastMemcpy #pragma pack (1) Index: Lib/2D/Palette.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/Palette.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Palette.cpp --- Lib/2D/Palette.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/Palette.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Palette.hpp" #include "UtilInterface.hpp" #include "gapp.hpp" float Palette::brightness = 1.0f; // The name of the current loaded palette. String Palette::name; ColorTable Palette::colorTable2080; Index: Lib/2D/RGBColor.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/RGBColor.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 RGBColor.cpp --- Lib/2D/RGBColor.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/RGBColor.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "RGBColor.hpp" RGBColor::RGBColor(BYTE red, BYTE green, BYTE blue) { RGBColor::red = red; RGBColor::green = green; RGBColor::blue = blue; } // end RGBColor::RGBColor Index: Lib/2D/RGBColor.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/RGBColor.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 RGBColor.hpp --- Lib/2D/RGBColor.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/RGBColor.hpp 30 Aug 2003 00:58:51 -0000 @@ -17,21 +17,21 @@ */ #ifndef __RGBColor_hpp__ #define __RGBColor_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" //-------------------------------------------------------------------------- class RGBColor { public: BYTE red; // 0-FF BYTE green; // 0-FF BYTE blue; // 0-FF Index: Lib/2D/Span.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/Span.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Span.cpp --- Lib/2D/Span.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/Span.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Span.hpp" int allowSpanBlitting = 1; #if _MSC_VER > 1000 #pragma optimize( "", off ) #endif //-------------------------------------------------------------------------- Index: Lib/2D/Surface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/2D/Surface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Surface.cpp --- Lib/2D/Surface.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/2D/Surface.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Surface.hpp" #include "UtilInterface.hpp" #include "cGrowList.hpp" #include "fXY.hpp" #include "gapp.hpp" #include "TimerInterface.hpp" #include "Span.hpp" #if _MSC_VER > 1000 Index: Lib/Interfaces/JoystickInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Interfaces/JoystickInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 JoystickInterface.cpp --- Lib/Interfaces/JoystickInterface.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Interfaces/JoystickInterface.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "JoystickInterface.hpp" #include "TimerInterface.hpp" #include "KeyboardInterface.hpp" #include "KeyScanCodeDefs.h" #include "DirectDrawGlobals.hpp" const float JoystickInterface::joystickPollInterval = 0.1f; const float JoystickInterface::errorThreshold = 0.4f; Index: Lib/Interfaces/JoystickInterface.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Interfaces/JoystickInterface.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 JoystickInterface.hpp --- Lib/Interfaces/JoystickInterface.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Interfaces/JoystickInterface.hpp 30 Aug 2003 00:58:51 -0000 @@ -17,21 +17,21 @@ */ #ifndef __JoystickInterface_hpp__ #define __JoystickInterface_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "iXY.hpp" #include "fXY.hpp" #include "iRect.hpp" #include "Surface.hpp" extern bool gSetupJoystickFlag; class JoystickInterface { private: Index: Lib/Interfaces/TimerInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Interfaces/TimerInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TimerInterface.cpp --- Lib/Interfaces/TimerInterface.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Interfaces/TimerInterface.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TimerInterface.hpp" TIMESTAMP TimerInterface::frameStartTime; unsigned TimerInterface::framesUntilNextFPSUpdate = 0; double TimerInterface::totalFPSGroupTime = 0; double TimerInterface::fps = 0; double TimerInterface::fpsAVG = 0; double TimerInterface::timeSlice = 0; // start Index: Lib/Interfaces/TimerInterface.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Interfaces/TimerInterface.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TimerInterface.hpp --- Lib/Interfaces/TimerInterface.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Interfaces/TimerInterface.hpp 30 Aug 2003 00:58:51 -0000 @@ -17,21 +17,21 @@ */ #ifndef __TimerInterface_hpp__ #define __TimerInterface_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "cTimeStamp.hpp" extern bool gTimeSliceFlag; //-------------------------------------------------------------------------- class TimerInterface { private: // Higher number means more accurate average. enum { FRAMES_PER_FPS_UPDATE = 4 }; Index: Lib/Interfaces/UtilInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Interfaces/UtilInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UtilInterface.cpp --- Lib/Interfaces/UtilInterface.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Interfaces/UtilInterface.cpp 30 Aug 2003 00:58:51 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UtilInterface.hpp" bool gSpanBlittingFlag = false; // FilenameSortFunction //--------------------------------------------------------------------------- int FilenameSortFunction(const void *a, const void *b) { const Filename *p1 = (const Filename *)a; const Filename *p2 = (const Filename *)b; Index: Lib/Interfaces/UtilInterface.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Interfaces/UtilInterface.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UtilInterface.hpp --- Lib/Interfaces/UtilInterface.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Interfaces/UtilInterface.hpp 30 Aug 2003 00:58:51 -0000 @@ -18,21 +18,21 @@ #ifndef __UtilInterface_hpp__ #define __UtilInterface_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "String.hpp" class Filename { public: char name[256]; Filename() { name[0] = '\0'; Index: Lib/PObject/Classes/Angle.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/Angle.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Angle.cpp --- Lib/PObject/Classes/Angle.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/Angle.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,15 +8,15 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Angle.hpp" double Angle::deg_const = 57.2957795132; double Angle::pi_const = 3.14159265359; Index: Lib/PObject/Classes/BitArray.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/BitArray.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 BitArray.cpp --- Lib/PObject/Classes/BitArray.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/BitArray.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "BitArray.hpp" BitArray::BitArray( void ) { array = NULL; } //************************************************************************ Index: Lib/PObject/Classes/BoundBox.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/BoundBox.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 BoundBox.cpp --- Lib/PObject/Classes/BoundBox.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/BoundBox.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "BoundBox.hpp" boolean BoundBox::bounds( PointXYi ¢er, PointXYi &test ) { PointXYi new_max( center + max ); PointXYi new_min( center + min ); return( test.x >= new_min.x && test.x < new_max.x && test.y >= new_min.y && test.y < new_max.y ); Index: Lib/PObject/Classes/BresenhamLine.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/BresenhamLine.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 BresenhamLine.cpp --- Lib/PObject/Classes/BresenhamLine.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/BresenhamLine.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "BresenhamLine.hpp" void BresenhamLine::set_path( PointXYi &start, PointXYi &end ) { finished = 0; x = start.x; y = start.y; Index: Lib/PObject/Classes/FileList.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/FileList.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FileList.cpp --- Lib/PObject/Classes/FileList.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/FileList.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "FileList.hpp" #include FileList::FileList() : ArrayTemplate< char * >() { contains = 0; } FileList::FileList( unsigned long size ) : ArrayTemplate< char * >( ) Index: Lib/PObject/Classes/PArray.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/PArray.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PArray.cpp --- Lib/PObject/Classes/PArray.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/PArray.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PArray.hpp" #include PArray::PArray( unsigned long size ) { PArray::size = size; array = new PObject * [ size ]; assert( array != NULL ); } Index: Lib/PObject/Classes/PArrayGrowable.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/PArrayGrowable.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PArrayGrowable.cpp --- Lib/PObject/Classes/PArrayGrowable.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/PArrayGrowable.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PArrayGrowable.hpp" #include #include #include PArrayGrowable::PArrayGrowable() { array = NULL; size = 0; grow_increment = 1; Index: Lib/PObject/Classes/PHeap.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/PHeap.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PHeap.cpp --- Lib/PObject/Classes/PHeap.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/PHeap.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PHeap.hpp" PHeap::PHeap( unsigned long heap_size ) : PArrayGrowable( heap_size ) { root = 1; last = 0; } PHeap::PHeap( void ) Index: Lib/PObject/Classes/PObject.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/PObject.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PObject.cpp --- Lib/PObject/Classes/PObject.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/PObject.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PObject.hpp" boolean PObject::is_equal( PObject *object ) { if ( this == object ) return ( _TRUE ); return( _FALSE ); } Index: Lib/PObject/Classes/PPriorityQueue.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/PPriorityQueue.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PPriorityQueue.cpp --- Lib/PObject/Classes/PPriorityQueue.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/PPriorityQueue.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PPriorityQueue.hpp" PPriorityQueue::PPriorityQueue( unsigned long queue_size ) : PHeap( queue_size ) { } PPriorityQueue::PPriorityQueue( void ) Index: Lib/PObject/Classes/PQueue.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/PQueue.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PQueue.cpp --- Lib/PObject/Classes/PQueue.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/PQueue.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PQueue.hpp" PQueue::PQueue( unsigned long size ) : PArray( size ) { front = 0; rear = 0; } void PQueue::initialize( unsigned long size ) Index: Lib/PObject/Classes/Point.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/Point.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Point.cpp --- Lib/PObject/Classes/Point.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/Point.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,12 +8,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "point.hpp" Index: Lib/PObject/Classes/Timer.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/PObject/Classes/Timer.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Timer.cpp --- Lib/PObject/Classes/Timer.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/PObject/Classes/Timer.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,12 +8,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Timer.hpp" Index: Lib/Particles/ChunkTrajectoryParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/ChunkTrajectoryParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ChunkTrajectoryParticle2D.cpp --- Lib/Particles/ChunkTrajectoryParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/ChunkTrajectoryParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ChunkTrajectoryParticle2D.hpp" #include "TimerInterface.hpp" #include "PuffParticle2D.hpp" #include "GameConfig.hpp" #include "Math.hpp" #include "RGBColor.hpp" #include "TileInterface.hpp" #include "UnitGlobals.hpp" #include "ParticleInterface.hpp" Index: Lib/Particles/CloudParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/CloudParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 CloudParticle2D.cpp --- Lib/Particles/CloudParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/CloudParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "CloudParticle2D.hpp" #include "TimerInterface.hpp" #include "PackedSurface.hpp" #include "GameConfig.hpp" // Statics. PackedSurface CloudParticle2D::staticPackedCloud; iXY CloudParticle2D::worldSize(0, 0); Index: Lib/Particles/CraterParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/CraterParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 CraterParticle2D.cpp --- Lib/Particles/CraterParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/CraterParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "CraterParticle2D.hpp" #include "UtilInterface.hpp" #include "ConsoleInterface.hpp" // Set to 1 for divide by zero issues. int CraterParticle2D::cacheHitCount = 1; int CraterParticle2D::cacheMissCount = 1; int CraterParticle2D::halfBoundsSize = 24; Index: Lib/Particles/DirtKickParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/DirtKickParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirtKickParticle2D.cpp --- Lib/Particles/DirtKickParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/DirtKickParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "DirtKickParticle2D.hpp" Surface DirtKickParticle2D::dirtKickSprite; const int dirtKickFPS = 24; // DirtKickParticle2D //--------------------------------------------------------------------------- Index: Lib/Particles/DirtKickParticle2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/DirtKickParticle2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirtKickParticle2D.hpp --- Lib/Particles/DirtKickParticle2D.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/DirtKickParticle2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __DirtKickParticle2D_hpp__ #define __DirtKickParticle2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Particle2D.hpp" // DirtKickParticle2D //-------------------------------------------------------------------------- class DirtKickParticle2D : public Particle2D { public: DirtKickParticle2D(fXYZ pos); Index: Lib/Particles/ExplosionFlashParticle2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/ExplosionFlashParticle2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ExplosionFlashParticle2D.hpp --- Lib/Particles/ExplosionFlashParticle2D.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/ExplosionFlashParticle2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __FlashParticle2D_hpp__ #define __FlashParticle2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ExplosionFireParticle2D.hpp" // FlashParticle2D //-------------------------------------------------------------------------- class FlashParticle2D : public ExplosionFireParticle2D { public: FlashParticle2D(fXYZ pos, int xSize); Index: Lib/Particles/FireParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/FireParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FireParticle2D.cpp --- Lib/Particles/FireParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/FireParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "FireParticle2D.hpp" #include "TimerInterface.hpp" void FireParticle2D::reset() { totalTime = 0; color = 0; isAlive = false; } // end FireParticle2D::reset Index: Lib/Particles/FireParticle2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/FireParticle2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FireParticle2D.hpp --- Lib/Particles/FireParticle2D.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/FireParticle2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -14,21 +14,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __FireParticle2D_hpp_ #define __FireParticle2D_hpp_ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Surface.hpp" #include "SpriteSorter.hpp" #include "fXYZ.hpp" class FireParticle2D { public: float totalTime; BYTE color; Index: Lib/Particles/FireParticleSystem2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/FireParticleSystem2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FireParticleSystem2D.cpp --- Lib/Particles/FireParticleSystem2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/FireParticleSystem2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "FireParticleSystem2D.hpp" #include "TimerInterface.hpp" BYTE FireParticleSystem2D::fireColor[12]; // FireParticleSystem2D //--------------------------------------------------------------------------- FireParticleSystem2D::FireParticleSystem2D(fXYZ pos, int isFarAway) : ParticleSystem2D(pos, isFarAway) { FUNC("FireParticleSystem2D::FireParticleSystem2D"); Index: Lib/Particles/FireParticleSystem2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/FireParticleSystem2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FireParticleSystem2D.hpp --- Lib/Particles/FireParticleSystem2D.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/FireParticleSystem2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -14,21 +14,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __FireParticleSystem2D_hpp__ #define __FireParticleSystem2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ParticleSystem2D.hpp" #include "FireParticle2D.hpp" class FireParticleSystem2D : public ParticleSystem2D { public: FireParticleSystem2D(fXYZ pos, int isFarAway); void init(); Index: Lib/Particles/FlameParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/FlameParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FlameParticle2D.cpp --- Lib/Particles/FlameParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/FlameParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "FlameParticle2D.hpp" cGrowList FlameParticle2D::staticPackedExplosion0; cGrowList FlameParticle2D::staticPackedExplosion1; const int explosionFPS = 18; const char explosionPath[] = "pics\\particles\\explosion\\"; // Used for packing images. Index: Lib/Particles/FlameParticle2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/FlameParticle2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FlameParticle2D.hpp --- Lib/Particles/FlameParticle2D.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/FlameParticle2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __FlameParticle2D_hpp__ #define __FlameParticle2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Particle2D.hpp" #include "PackedSurface.hpp" #include "cGrowList.hpp" // FlameParticle2D //-------------------------------------------------------------------------- class FlameParticle2D : public Particle2D { public: FlameParticle2D( const fXYZ &pos, Index: Lib/Particles/FlashParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/FlashParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FlashParticle2D.cpp --- Lib/Particles/FlashParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/FlashParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "FlashParticle2D.hpp" #include "UtilInterface.hpp" PackedSurface FlashParticle2D::staticPackedFlash; // FlashParticle2D //--------------------------------------------------------------------------- FlashParticle2D::FlashParticle2D( const fXYZ &pos, Index: Lib/Particles/GroundExplosionParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/GroundExplosionParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GroundExplosionParticle2D.cpp --- Lib/Particles/GroundExplosionParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/GroundExplosionParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GroundExplosionParticle2D.hpp" Surface GroundExplosionParticle2D::groundParticleSprite0; // GroundExplosionParticle2D constructor //--------------------------------------------------------------------------- GroundExplosionParticle2D::GroundExplosionParticle2D(fXYZ pos, int maxSpeed) : TrajectoryParticle2D(pos, maxSpeed) { Index: Lib/Particles/GroundExplosionParticle2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/GroundExplosionParticle2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GroundExplosionParticle2D.hpp --- Lib/Particles/GroundExplosionParticle2D.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/GroundExplosionParticle2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -14,21 +14,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __GroundExplosionParticle2D_hpp__ #define __GroundExplosionParticle2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TrajectoryParticle2D.hpp" // GroundExplosionParticle2D //-------------------------------------------------------------------------- class GroundExplosionParticle2D : public TrajectoryParticle2D { protected: static Surface groundParticleSprite0; Index: Lib/Particles/GroundExplosionParticleSystem2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/GroundExplosionParticleSystem2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GroundExplosionParticleSystem2D.cpp --- Lib/Particles/GroundExplosionParticleSystem2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/GroundExplosionParticleSystem2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GroundExplosionParticleSystem2D.hpp" #include "Physics.hpp" #include "GroundExplosionParticle2D.hpp" //--------------------------------------------------------------------------- GroundExplosionParticleSystem2D::GroundExplosionParticleSystem2D(fXYZ pos, iRect bounds, int maxParticleCount, int maxParticleSpeed) : ParticleSystem2D(pos) { FUNC("GroundExplosionParticleSystem2D::GroundExplosionParticleSystem2D"); Index: Lib/Particles/GroundExplosionParticleSystem2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/GroundExplosionParticleSystem2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GroundExplosionParticleSystem2D.hpp --- Lib/Particles/GroundExplosionParticleSystem2D.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/GroundExplosionParticleSystem2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __GroundExplosionParticle2D_hpp__ #define __GroundExplosionParticle2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ParticleSystem2D.hpp" // GroundExplosionParticleSystem2D //-------------------------------------------------------------------------- class GroundExplosionParticleSystem2D : public ParticleSystem2D { public: GroundExplosionParticleSystem2D(fXYZ pos, iRect bounds, int maxParticleCount, int maxParticleSpeed); Index: Lib/Particles/MovementDirtPuffParticle2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/MovementDirtPuffParticle2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MovementDirtPuffParticle2D.hpp --- Lib/Particles/MovementDirtPuffParticle2D.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/MovementDirtPuffParticle2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -14,21 +14,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __MovementDirtPuffParticle2D_hpp__ #define __MovementDirtPuffParticle2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PuffParticle2D.hpp" // MovementDirtPuffParticle2D //-------------------------------------------------------------------------- class MovementDirtPuffParticle2D : public PuffParticle2D { public: MovementDirtPuffParticle2D(fXYZ pos) : PuffParticle2D(pos, DIRT_PUFF, movePuffMinScale, movePuffRandScale, movePuffMinFPS, movePuffRandFPS, movePuffLayer, movePuffWindScale) { Index: Lib/Particles/Particle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/Particle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Particle2D.cpp --- Lib/Particles/Particle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/Particle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ //--------------------------------------------------------------------------- -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Particle2D.hpp" #include "TimerInterface.hpp" #include "PackedSurface.hpp" #include "WorldViewInterface.hpp" static Particle2D theRealZParticle2D(fXYZ(0, 0, 0)); Particle2D *const Particle2D::zParticle2D = &theRealZParticle2D; // Static variables. Index: Lib/Particles/ParticleInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/ParticleInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ParticleInterface.cpp --- Lib/Particles/ParticleInterface.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/ParticleInterface.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "KeyScanCodeDefs.h" #include "ParticleInterface.hpp" #include "PuffParticle2D.hpp" #include "SmolderParticleSystem2D.hpp" #include "FlameParticle2D.hpp" #include "FlashParticle2D.hpp" #include "TemplateExplosionSystem.hpp" //#include "GroundExplosionParticle2D.hpp" //#include "GroundExplosionParticleSystem2D.hpp" #include "CloudParticle2D.hpp" Index: Lib/Particles/ParticleInterface.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/ParticleInterface.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ParticleInterface.hpp --- Lib/Particles/ParticleInterface.hpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/ParticleInterface.hpp 30 Aug 2003 00:58:51 -0000 @@ -18,21 +18,21 @@ #ifndef __ParticleInterface_hpp__ #define __ParticleInterface_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "iXY.hpp" #include "iRect.hpp" #include "PuffParticle2D.hpp" #include "ParticleSystemGlobals.hpp" #include "UnitTypes.hpp" #include "UnitState.hpp" class Surface; class PackedSurface; Index: Lib/Particles/ParticleSystem2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/ParticleSystem2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ParticleSystem2D.cpp --- Lib/Particles/ParticleSystem2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/ParticleSystem2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ParticleSystem2D.hpp" #include "TimerInterface.hpp" #include "ParticleSystemGlobals.hpp" // Set up the info for the PARTICLE_SYSTEMS in the linked list. static ParticleSystem2D theRealZParticleSystem2D(fXYZ(0, 0, 0), 0); ParticleSystem2D *const ParticleSystem2D::zParticleSystem2D = &theRealZParticleSystem2D; int ParticleSystem2D::particleSystemCount = 0; Index: Lib/Particles/ParticleSystemGlobals.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/ParticleSystemGlobals.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ParticleSystemGlobals.cpp --- Lib/Particles/ParticleSystemGlobals.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/ParticleSystemGlobals.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ParticleSystemGlobals.hpp" float ExplosionSystem::puffSmallScaleMin = 0.0f; float ExplosionSystem::puffSmallScaleRand = 0.3f; float ExplosionSystem::puffMediumScaleMin = 0.2f; float ExplosionSystem::puffMediumScaleRand = 0.2f; float ExplosionSystem::puffLargeScaleMin = 0.4f; float ExplosionSystem::puffLargeScaleRand = 0.2f; Index: Lib/Particles/ParticleTweakView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/ParticleTweakView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ParticleTweakView.cpp --- Lib/Particles/ParticleTweakView.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/ParticleTweakView.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ParticleTweakView.hpp" #include "Desktop.hpp" ParticleTweakView::ParticleTweakView() : View() { setTitle("ParticleTweakView"); setAllowResize(false); setAllowMove(true); setDisplayStatusBar(true); Index: Lib/Particles/PuffParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/PuffParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PuffParticle2D.cpp --- Lib/Particles/PuffParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/PuffParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PuffParticle2D.hpp" #include "PackedSurface.hpp" #include "TimerInterface.hpp" #include "ParticleSystemGlobals.hpp" #include "UtilInterface.hpp" #include "GameConfig.hpp" // Static images. cGrowList PuffParticle2D::staticPackedSmokeLightPuff; Index: Lib/Particles/RadarPingParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/RadarPingParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 RadarPingParticle2D.cpp --- Lib/Particles/RadarPingParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/RadarPingParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "RadarPingParticle2D.hpp" Surface RadarPingParticle2D::radarPingSprite; // RadarPingParticle2D //--------------------------------------------------------------------------- RadarPingParticle2D::RadarPingParticle2D(fXYZ pos) : Particle2D(pos) { Index: Lib/Particles/SmokingTrajectoryParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/SmokingTrajectoryParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SmokingTrajectoryParticle2D.cpp --- Lib/Particles/SmokingTrajectoryParticle2D.cpp 1 Dec 2002 17:51:40 -0000 1.1 +++ Lib/Particles/SmokingTrajectoryParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SmokingTrajectoryParticle2D.hpp" #include "TimerINterface.hpp" //--------------------------------------------------------------------------- SmokingTrajectoryParticle2D::SmokingTrajectoryParticle2D( const fXYZ &pos, int maxSpeed, float waitMin, float waitRand, PUFF_PARTICLE_TYPE particleType) : TrajectoryParticle2D(pos, maxSpeed) Index: Lib/Particles/SmolderParticleSystem2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/SmolderParticleSystem2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SmolderParticleSystem2D.cpp --- Lib/Particles/SmolderParticleSystem2D.cpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/SmolderParticleSystem2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SmolderParticleSystem2D.hpp" #include "TimerInterface.hpp" SmolderParticleSystem2D::SmolderParticleSystem2D( const fXYZ &pos, const iRect &emitBounds, float lifetime, float waitMin, float waitMax, PUFF_TYPE particleType) : ParticleSystem2D(pos, isFarAway) Index: Lib/Particles/SmolderParticleSystem2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/SmolderParticleSystem2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SmolderParticleSystem2D.hpp --- Lib/Particles/SmolderParticleSystem2D.hpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/SmolderParticleSystem2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __SmolderParticleSystem2D_hpp__ #define __SmolderParticleSystem2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ParticleSystem2D.hpp" #include "PuffParticle2D.hpp" class SmolderParticleSystem2D : public ParticleSystem2D { public: SmolderParticleSystem2D( const fXYZ &pos, const iRect &emitBounds, float lifetime, Index: Lib/Particles/SnowParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/SnowParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SnowParticle2D.cpp --- Lib/Particles/SnowParticle2D.cpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/SnowParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SnowParticle2D.hpp" class SnowParticleSystem2D; //--------------------------------------------------------------------------- SnowParticle2D::SnowParticle2D() { reset(); Index: Lib/Particles/SnowParticle2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/SnowParticle2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SnowParticle2D.hpp --- Lib/Particles/SnowParticle2D.hpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/SnowParticle2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __SnowParticle2D_hpp__ #define __SnowParticle2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Surface.hpp" #include "fXYZ.hpp" #include "SpriteSorter.hpp" class SnowParticle2D { private: fXYZ pos; float totalTime; Index: Lib/Particles/SnowParticleSystem2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/SnowParticleSystem2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SnowParticleSystem2D.cpp --- Lib/Particles/SnowParticleSystem2D.cpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/SnowParticleSystem2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SnowParticleSystem2D.hpp" #include "TimerInterface.hpp" int SnowParticleSystem2D::snowParticleCount; // SnowParticleSystem2D constructor //--------------------------------------------------------------------------- SnowParticleSystem2D::SnowParticleSystem2D(fXYZ pos) : ParticleSystem2D(pos) Index: Lib/Particles/SnowParticleSystem2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/SnowParticleSystem2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SnowParticleSystem2D.hpp --- Lib/Particles/SnowParticleSystem2D.hpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/SnowParticleSystem2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __SnowParticleSystem2D_hpp__ #define __SnowParticleSystem2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ParticleSystem2D.hpp" #include "SnowParticle2D.hpp" class SnowParticleSystem2D : public ParticleSystem2D { friend class cSnowParticle2D; public: SnowParticleSystem2D(fXYZ pos); Index: Lib/Particles/SparkParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/SparkParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SparkParticle2D.cpp --- Lib/Particles/SparkParticle2D.cpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/SparkParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SparkParticle2D.hpp" #include "TimerInterface.hpp" Surface SparkParticle2D::sparkSprite; //--------------------------------------------------------------------------- SparkParticle2D::SparkParticle2D(fXYZ nPos) : Particle2D(nPos) { Index: Lib/Particles/SparkParticle2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/SparkParticle2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SparkParticle2D.hpp --- Lib/Particles/SparkParticle2D.hpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/SparkParticle2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __SparkParticle2D_hpp__ #define __SparkParticle2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Particle2D.hpp" class SparkParticle2D : public Particle2D { public: SparkParticle2D(fXYZ pos); //cSpriteBltTrans static spark; Index: Lib/Particles/TemplateExplosionSystem.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/TemplateExplosionSystem.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TemplateExplosionSystem.cpp --- Lib/Particles/TemplateExplosionSystem.cpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/TemplateExplosionSystem.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TemplateExplosionSystem.hpp" #include "ChunkTrajectoryParticle2D.hpp" #include "FlameParticle2D.hpp" #include "FlashParticle2D.hpp" #include "Particle2D.hpp" #include "TimerInterface.hpp" #include "CraterParticle2D.hpp" #include "TileInterface.hpp" #include "ParticleInterface.hpp" Index: Lib/Particles/TemplateMuzzleSystem.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/TemplateMuzzleSystem.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TemplateMuzzleSystem.cpp --- Lib/Particles/TemplateMuzzleSystem.cpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/TemplateMuzzleSystem.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TemplateMuzzleSystem.hpp" #include "VectorPuffParticle2D.hpp" #include "Math.hpp" #include "FlashParticle2D.hpp" // TemplateMuzzleSystem //--------------------------------------------------------------------------- TemplateMuzzleSystem::TemplateMuzzleSystem( const fXYZ &pos, const fXYZ &direction, Index: Lib/Particles/TrajectoryParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/TrajectoryParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TrajectoryParticle2D.cpp --- Lib/Particles/TrajectoryParticle2D.cpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/TrajectoryParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TrajectoryParticle2D.hpp" #include "Physics.hpp" #include "Math.hpp" //--------------------------------------------------------------------------- TrajectoryParticle2D::TrajectoryParticle2D( const fXYZ &pos, int maxSpeed, float trajectoryAngle, int dieAtMidFlight /* = 0 */) : Particle2D(pos) Index: Lib/Particles/VectorPuffParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/VectorPuffParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 VectorPuffParticle2D.cpp --- Lib/Particles/VectorPuffParticle2D.cpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/VectorPuffParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "VectorPuffParticle2D.hpp" #include "PuffParticle2D.hpp" #include "TimerInterface.hpp" // VectorPuffParticle2D //--------------------------------------------------------------------------- VectorPuffParticle2D::VectorPuffParticle2D( const fXYZ &pos, const fXYZ &direction, Index: Lib/Particles/VectorPuffParticle2D.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/VectorPuffParticle2D.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 VectorPuffParticle2D.hpp --- Lib/Particles/VectorPuffParticle2D.hpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/VectorPuffParticle2D.hpp 30 Aug 2003 00:58:51 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __VectorPuffParticle2D_hpp__ #define __VectorPuffParticle2D_hpp__ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "WindParticle2D.hpp" // VectorPuffParticle2D //-------------------------------------------------------------------------- class VectorPuffParticle2D : public WindParticle2D { protected: float wait; float waitTime; Index: Lib/Particles/WindParticle2D.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Particles/WindParticle2D.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 WindParticle2D.cpp --- Lib/Particles/WindParticle2D.cpp 1 Dec 2002 17:51:45 -0000 1.1 +++ Lib/Particles/WindParticle2D.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "WindParticle2D.hpp" #include "Physics.hpp" //-------------------------------------------------------------------------- WindParticle2D::WindParticle2D(const fXYZ &pos, float windScale /* = 1.0f */) : Particle2D(pos) { WindParticle2D::windScale = windScale; } // end WindParticle2D::WindParticle2D Index: Lib/Types/fRect.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Types/fRect.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 fRect.cpp --- Lib/Types/fRect.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/Types/fRect.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "fRect.hpp" fRect fRect::operator | (const fRect &a) { if (getIsEmpty()) { return a; } else if (a.getIsEmpty()) { Index: Lib/Types/fXYZ.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Types/fXYZ.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 fXYZ.cpp --- Lib/Types/fXYZ.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/Types/fXYZ.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,14 +8,14 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "fXYZ.hpp" const fXYZ fXYZ::ZERO(0.0, 0.0, 0.0); Index: Lib/Types/fXYZ.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Types/fXYZ.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 fXYZ.hpp --- Lib/Types/fXYZ.hpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/Types/fXYZ.hpp 30 Aug 2003 00:58:51 -0000 @@ -17,21 +17,21 @@ */ #ifndef __fXYZ_hpp__ #define __fXYZ_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "fXY.hpp" class Matrix; struct XForm; // fXYZ class declarations. //--------------------------------------------------------------------------- struct fXYZ { float x; Index: Lib/Types/iRect.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Types/iRect.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 iRect.cpp --- Lib/Types/iRect.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/Types/iRect.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "iRect.hpp" iRect iRect::operator | (const iRect &a) { if (getIsEmpty()) { return a; } else if (a.getIsEmpty()) { Index: Lib/Types/iXY.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/Types/iXY.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 iXY.cpp --- Lib/Types/iXY.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/Types/iXY.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,17 +8,17 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "iXY.hpp" double iXY::mag() const { return sqrt(x * x + y * y); } Index: Lib/View/AbstractButton.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/AbstractButton.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 AbstractButton.cpp --- Lib/View/AbstractButton.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/AbstractButton.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,19 +9,19 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "AbstractButton.hpp" // actionPerformed void AbstractButton::actionPerformed(const mMouseEvent &me) { Button::actionPerformed(me); } // end AbstractButton::actionPerformed Index: Lib/View/Button.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/Button.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Button.cpp --- Lib/View/Button.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/Button.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Button.hpp" #include "ViewGlobals.hpp" #include "MouseEvent.hpp" // draw //--------------------------------------------------------------------------- void Button::draw(const Surface &dest) { iRect bounds; getBounds(bounds); Index: Lib/View/CheckBox.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/CheckBox.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 CheckBox.cpp --- Lib/View/CheckBox.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/CheckBox.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "CheckBox.hpp" #include "MouseEvent.hpp" // reset //--------------------------------------------------------------------------- void CheckBox::reset() { label = ""; state = false; Index: Lib/View/Choice.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/Choice.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Choice.cpp --- Lib/View/Choice.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/Choice.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Choice.hpp" #include "View.hpp" //--------------------------------------------------------------------------- void Choice::reset() { index = 0; minWidth = 0; size.x = 10; Index: Lib/View/Component.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/Component.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Component.cpp --- Lib/View/Component.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/Component.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Component.hpp" #include "ViewGlobals.hpp" #include "View.hpp" int Component::borderSize = 12; // reset //--------------------------------------------------------------------------- void Component::reset() { Index: Lib/View/Cursor.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/Cursor.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Cursor.cpp --- Lib/View/Cursor.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/Cursor.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,12 +9,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Cursor.hpp" Index: Lib/View/Desktop.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/Desktop.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Desktop.cpp --- Lib/View/Desktop.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/Desktop.cpp 30 Aug 2003 00:58:51 -0000 @@ -15,21 +15,21 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Desktop.hpp" #include "KeyboardInterface.hpp" #include "loadPics.hpp" #include "TimerInterface.hpp" #include "MouseInterface.hpp" float Desktop::totalMouseDownTime = 0.0; float Desktop::currentMouseDownTime = 0.0; View *Desktop::top; Index: Lib/View/Dialog.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/Dialog.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Dialog.cpp --- Lib/View/Dialog.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/Dialog.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,12 +9,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Dialog.hpp" Index: Lib/View/FileDialog.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/FileDialog.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FileDialog.cpp --- Lib/View/FileDialog.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/FileDialog.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,12 +9,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "FileDialog.hpp" Index: Lib/View/Icon.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/Icon.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Icon.cpp --- Lib/View/Icon.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/Icon.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,12 +9,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Icon.hpp" Index: Lib/View/InputEvent.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/InputEvent.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 InputEvent.hpp --- Lib/View/InputEvent.hpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/InputEvent.hpp 30 Aug 2003 00:58:51 -0000 @@ -18,21 +18,21 @@ #ifndef __InputEvent_hpp__ #define __InputEvent_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "cTimeStamp.hpp" class InputEvent { protected: TIMESTAMP when; // The time the event occured. int modifiers; // The modifier keys down during the event (shift, ctrl, alt, meta). public: Index: Lib/View/Label.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/Label.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Label.cpp --- Lib/View/Label.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/Label.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,12 +9,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Label.hpp" Index: Lib/View/List.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/List.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 List.cpp --- Lib/View/List.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/List.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,12 +9,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "List.hpp" Index: Lib/View/MouseEvent.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/MouseEvent.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MouseEvent.hpp --- Lib/View/MouseEvent.hpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/MouseEvent.hpp 30 Aug 2003 00:58:51 -0000 @@ -18,21 +18,21 @@ #ifndef __mMouseEvent_hpp__ #define __mMouseEvent_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Component.hpp" #include "iXY.hpp" #include "InputEvent.hpp" class mMouseEvent : public InputEvent { private: Component *source; // The Component that originated the event. int id; // The integer that identifies the event. Index: Lib/View/ScrollBar.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/ScrollBar.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ScrollBar.cpp --- Lib/View/ScrollBar.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/ScrollBar.cpp 30 Aug 2003 00:58:51 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ScrollBar.hpp" // ScrollBar //--------------------------------------------------------------------------- ScrollBar::ScrollBar() : Component() { reset(); } // end ScrollBar::ScrollBar Index: Lib/View/String.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/String.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 String.cpp --- Lib/View/String.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/String.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "String.hpp" // String //--------------------------------------------------------------------------- // Purpose: Conversion constructor: Convert char * to String. //--------------------------------------------------------------------------- String::String(const char *string) { length = strlen(string); mem = new char [length + 1]; Index: Lib/View/TextArea.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/TextArea.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TextArea.cpp --- Lib/View/TextArea.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/TextArea.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,12 +9,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TextArea.hpp" Index: Lib/View/TextComponent.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/TextComponent.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TextComponent.cpp --- Lib/View/TextComponent.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/TextComponent.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,12 +9,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TextComponent.hpp" Index: Lib/View/TextField.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/TextField.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TextField.cpp --- Lib/View/TextField.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/TextField.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,12 +9,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TextField.hpp" Index: Lib/View/TitledBorder.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/TitledBorder.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TitledBorder.cpp --- Lib/View/TitledBorder.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/TitledBorder.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TitledBorder.hpp" #include "Surface.hpp" #include "iRect.hpp" // draw //-------------------------------------------------------------------------- void TitledBorder::draw(const Surface &dest) { Surface s; Index: Lib/View/View.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/View.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 View.cpp --- Lib/View/View.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/View.cpp 30 Aug 2003 00:58:51 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "View.hpp" #include "Desktop.hpp" #include "MouseInterface.hpp" #include "KeyboardInterface.hpp" #include "fXY.hpp" #include "loadPics.hpp" #include "viewGlobals.hpp" #include "InputEvent.hpp" Index: Lib/View/View.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/View.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 View.hpp --- Lib/View/View.hpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/View.hpp 30 Aug 2003 00:58:51 -0000 @@ -19,21 +19,21 @@ #ifndef __View_hpp__ #define __View_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "cMouse.hpp" #include "cGrowList.hpp" #include "cButton.hpp" #include "Surface.hpp" #include "cInputField.hpp" #include "iRect.hpp" #include "iXY.hpp" #include "List.hpp" #include "Component.hpp" #include "MouseEvent.hpp" Index: Lib/View/ViewGlobals.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/ViewGlobals.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ViewGlobals.cpp --- Lib/View/ViewGlobals.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/ViewGlobals.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ViewGlobals.hpp" BYTE gForeground = 0; BYTE gBackground = 0; void setForeground(BYTE color) { gForeground = color; } Index: Lib/View/Window.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/Window.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Window.cpp --- Lib/View/Window.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/Window.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,12 +9,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Window.hpp" Index: Lib/View/cButton.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/cButton.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 cButton.cpp --- Lib/View/cButton.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/cButton.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "cButton.hpp" #include "Surface.hpp" #include "ViewGlobals.hpp" void cButton::createPacked(const iXY &pos, PackedSurface &source, const char *toolTip, ITEM_FUNC leftClickFunc) { Surface tempTopSurface(source.getPixX(), source.getPixY(), source.getPixX(), source.getFrameCount()); for (int i = 0; i < tempTopSurface.getFrameCount(); i++) Index: Lib/View/cInputField.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Lib/View/cInputField.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 cInputField.cpp --- Lib/View/cInputField.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ Lib/View/cInputField.cpp 30 Aug 2003 00:58:51 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "cInputField.hpp" #include "TimerInterface.hpp" //////////////////////////////////////////////////////////////////////////// // cInputFieldString definitions. //////////////////////////////////////////////////////////////////////////// // init //-------------------------------------------------------------------------- Index: NetPanzer/Classes/BonusUnitPowerUp.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/BonusUnitPowerUp.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 BonusUnitPowerUp.cpp --- NetPanzer/Classes/BonusUnitPowerUp.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/BonusUnitPowerUp.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "BonusUnitPowerUp.hpp" #include #include "UnitTypes.hpp" #include "UnitInterface.hpp" #include "PlayerInterface.hpp" #include "MapInterface.hpp" #include "ConsoleInterface.hpp" #include "Server.hpp" Index: NetPanzer/Classes/DDHardSurface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/DDHardSurface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DDHardSurface.cpp --- NetPanzer/Classes/DDHardSurface.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/DDHardSurface.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "DDHardSurface.hpp" #include "DirectDrawGlobals.hpp" DDHardSurface FRAME_BUFFER; DDHardSurface::DDHardSurface( ) : Surface() { myMem = false; frameCount = 1; Index: NetPanzer/Classes/EnemyRadarPowerUp.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/EnemyRadarPowerUp.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 EnemyRadarPowerUp.cpp --- NetPanzer/Classes/EnemyRadarPowerUp.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/EnemyRadarPowerUp.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "EnemyRadarPowerUp.hpp" #include #include "UnitTypes.hpp" #include "UnitInterface.hpp" #include "PlayerInterface.hpp" #include "MapInterface.hpp" #include "MiniMapInterface.hpp" #include "ConsoleInterface.hpp" Index: NetPanzer/Classes/KeyBinder.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/KeyBinder.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 KeyBinder.cpp --- NetPanzer/Classes/KeyBinder.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/KeyBinder.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "KeyBinder.hpp" #include KeyBinder KEY_BINDER; boolean KeyBinder::locked_key_table[256]; KeyBinder::KeyBinder( unsigned long key_list_size ) Index: NetPanzer/Classes/Objective.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Objective.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Objective.cpp --- NetPanzer/Classes/Objective.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Objective.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Objective.hpp" #include "PlayerInterface.hpp" #include "ConsoleInterface.hpp" Objective::Objective( short ID, PointXYi location, BoundBox area ) { objective_state.selection_state = _FALSE; objective_state.ID = ID; objective_state.location = location; objective_state.capture_area = area; Index: NetPanzer/Classes/Outpost.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Outpost.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Outpost.cpp --- NetPanzer/Classes/Outpost.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Outpost.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Outpost.hpp" #include "UnitInterface.hpp" #include "UnitProfileInterface.hpp" #include "PlayerInterface.hpp" #include "MapInterface.hpp" #include "ConsoleInterface.hpp" #include "Server.hpp" #include "NetworkState.hpp" Index: NetPanzer/Classes/PlacementMatrix.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/PlacementMatrix.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PlacementMatrix.cpp --- NetPanzer/Classes/PlacementMatrix.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/PlacementMatrix.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PlacementMatrix.hpp" #include "MapInterface.hpp" #include "UnitBlackBoard.hpp" void PlacementMatrix::reset( PointXYi ini_map_loc ) { ini_loc = ini_map_loc; current_offset = PointXYi( 0, 0 ); current_loc = ini_loc; run_length = 0; Index: NetPanzer/Classes/PlayerID.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/PlayerID.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PlayerID.cpp --- NetPanzer/Classes/PlayerID.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/PlayerID.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,12 +8,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PlayerID.hpp" Index: NetPanzer/Classes/PlayerState.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/PlayerState.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PlayerState.cpp --- NetPanzer/Classes/PlayerState.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/PlayerState.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,12 +8,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PlayerState.hpp" Index: NetPanzer/Classes/PlayerUnitConfig.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/PlayerUnitConfig.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PlayerUnitConfig.cpp --- NetPanzer/Classes/PlayerUnitConfig.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/PlayerUnitConfig.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PlayerUnitConfig.hpp" #include "GameConfig.hpp" #include unsigned short UnitGameInfo::unit_point_table[ _MAX_UNIT_TYPES ] = { 2, //manta 5, //panther 6, //titan 5, //stinger 1, //humvee, Index: NetPanzer/Classes/PowerUp.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/PowerUp.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PowerUp.cpp --- NetPanzer/Classes/PowerUp.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/PowerUp.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PowerUp.hpp" #include "UnitBlackBoard.hpp" #include "UnitInterface.hpp" #include "MapInterface.hpp" PowerUp::PowerUp() { powerup_state.life_cycle_state = _power_up_lifecycle_state_active; } Index: NetPanzer/Classes/Projectile.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Projectile.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Projectile.cpp --- NetPanzer/Classes/Projectile.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Projectile.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,13 +8,13 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Projectile.hpp" #include "Projectile.hpp" Index: NetPanzer/Classes/SelectionBoxSprite.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/SelectionBoxSprite.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SelectionBoxSprite.cpp --- NetPanzer/Classes/SelectionBoxSprite.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/SelectionBoxSprite.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SelectionBoxSprite.hpp" #include "GameConfig.hpp" Surface UNIT_FLAGS_SURFACE; boolean SelectionBoxSprite::isVisible( Recti &world_win ) { if ( (world_win.contains( world_pos + selection_area.min ) && (visible == _TRUE ) ) || (world_win.contains( world_pos + selection_area.max ) && (visible == _TRUE ) ) Index: NetPanzer/Classes/SelectionList.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/SelectionList.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SelectionList.cpp --- NetPanzer/Classes/SelectionList.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/SelectionList.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SelectionList.hpp" #include "UnitInterface.hpp" #include "PlayerInterface.hpp" int selectKey( void *key, UnitState *comp ) { PointXYi *point; point = (PointXYi *) key; Index: NetPanzer/Classes/SpawnList.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/SpawnList.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SpawnList.cpp --- NetPanzer/Classes/SpawnList.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/SpawnList.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SpawnList.hpp" #include #include SpawnList::SpawnList( unsigned long size ) { last_spawn_index = 0; initialize( size ); Index: NetPanzer/Classes/Sprite.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Sprite.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Sprite.cpp --- NetPanzer/Classes/Sprite.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Sprite.cpp 30 Aug 2003 00:58:51 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Sprite.hpp" #include "Palette.hpp" Sprite::Sprite( ) { height = 0; visible = _TRUE; next = NULL; } Index: NetPanzer/Classes/SpriteSorter.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/SpriteSorter.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SpriteSorter.cpp --- NetPanzer/Classes/SpriteSorter.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/SpriteSorter.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SpriteSorter.hpp" SpriteSorter SPRITE_SORTER; int sprite_key( const void *elem1, const void *elem2 ) { // !KLUDGE! for stupid Micro$oft....... // Index: NetPanzer/Classes/TileEngine.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/TileEngine.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TileEngine.cpp --- NetPanzer/Classes/TileEngine.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/TileEngine.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TileEngine.hpp" #include "DirectDrawGlobals.hpp" #include "blitters.h" #include "DDHardSurface.hpp" void TileEngine::blitWorld( void ) { unsigned long x_left_length, x_left_offset, x_right_length, x_right_offset; unsigned long y_top_length, y_top_offset, y_bottom_length, y_bottom_offset; Index: NetPanzer/Classes/TileSet.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/TileSet.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TileSet.cpp --- NetPanzer/Classes/TileSet.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/TileSet.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TileSet.hpp" #include #include #include #include #include "gdatstct.hpp" TileSet::TileSet( ) { tile_info = NULL; Index: NetPanzer/Classes/Unit.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Unit.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Unit.cpp --- NetPanzer/Classes/Unit.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Unit.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,12 +8,12 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Unit.hpp" Index: NetPanzer/Classes/UnitBlackBoard.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/UnitBlackBoard.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitBlackBoard.cpp --- NetPanzer/Classes/UnitBlackBoard.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/UnitBlackBoard.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitBlackBoard.hpp" #include "MapInterface.hpp" BitArray UnitBlackBoard::unit_loc_map; void UnitBlackBoard::initializeBlackBoard( void ) { unit_loc_map.initialize( MapInterface::getMapXsize(), MapInterface::getMapYsize() Index: NetPanzer/Classes/UnitBucketArray.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/UnitBucketArray.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitBucketArray.cpp --- NetPanzer/Classes/UnitBucketArray.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/UnitBucketArray.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitBucketArray.hpp" UnitBucketArray::UnitBucketArray( ) : UnitBucketArrayTemplate( ) { map_x_sample_factor = 0; map_y_sample_factor = 0; } UnitBucketArray::~UnitBucketArray( ) Index: NetPanzer/Classes/UnitList.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/UnitList.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitList.cpp --- NetPanzer/Classes/UnitList.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/UnitList.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitList.hpp" UnitList::UnitList( unsigned long size ) : UnitPointerList() { UnitList::size = size; contains = 0; } void UnitList::initialize( unsigned long size ) Index: NetPanzer/Classes/UnitMessage.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/UnitMessage.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitMessage.cpp --- NetPanzer/Classes/UnitMessage.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/UnitMessage.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitMessage.hpp" UnitMessage::UnitMessage( UnitID unit_id, unsigned char flags ) { UnitMessage::unit_id = unit_id; message_flags = flags; } UnitMessage::UnitMessage( unsigned char flags ) { Index: NetPanzer/Classes/UnitOpcodeEncoder.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/UnitOpcodeEncoder.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitOpcodeEncoder.cpp --- NetPanzer/Classes/UnitOpcodeEncoder.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/UnitOpcodeEncoder.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitOpcodeEncoder.hpp" #include "Server.hpp" #include "NetworkState.hpp" #include "Codewiz.hpp" #include "ConsoleInterface.hpp" void UnitOpcodeEncoder::initialize( int send_method ) { Index: NetPanzer/Classes/UnitPowerUp.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/UnitPowerUp.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitPowerUp.cpp --- NetPanzer/Classes/UnitPowerUp.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/UnitPowerUp.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitPowerUp.hpp" #include #include "UnitTypes.hpp" #include "UnitInterface.hpp" #include "UnitMessageTypes.hpp" #include "PlayerInterface.hpp" #include "MapInterface.hpp" #include "ConsoleInterface.hpp" Index: NetPanzer/Classes/UnitState.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/UnitState.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitState.cpp --- NetPanzer/Classes/UnitState.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/UnitState.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitState.hpp" UnitState::UnitState() { body_angle.set( 0, 10 ); turret_angle.set( 0, 10 ); // ** NOTE: TEMPORARY UNTIL UNIT PROPERITIES CODED bbox.setBounds( PointXYi( -25, -15 ), PointXYi( 25, 35 ) ); Index: NetPanzer/Classes/ViewCamera.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/ViewCamera.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ViewCamera.cpp --- NetPanzer/Classes/ViewCamera.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/ViewCamera.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ViewCamera.hpp" ViewCamera::ViewCamera() { loc.x = 0; loc.y = 0; } void ViewCamera::scrollPlusX( long scroll_increment ) { Index: NetPanzer/Classes/WorldInputCmdProcessor.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/WorldInputCmdProcessor.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 WorldInputCmdProcessor.cpp --- NetPanzer/Classes/WorldInputCmdProcessor.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Classes/WorldInputCmdProcessor.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "WorldInputCmdProcessor.hpp" #include "MouseInterface.hpp" #include "KeyboardInterface.hpp" #include "KeyScanCodeDefs.h" #include "WorldViewInterface.hpp" #include "MapInterface.hpp" #include "UnitInterface.hpp" #include "ObjectiveInterface.hpp" Index: NetPanzer/Classes/WorldMap.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/WorldMap.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 WorldMap.cpp --- NetPanzer/Classes/WorldMap.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Classes/WorldMap.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "WorldMap.hpp" #include "MapData.hpp" #include #include #include WorldMap::WorldMap() { Index: NetPanzer/Classes/AI/Astar.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/AI/Astar.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Astar.cpp --- NetPanzer/Classes/AI/Astar.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/AI/Astar.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Astar.hpp" #include "Timer.hpp" #include "PathingState.hpp" int compare( PObject *object1, PObject *object2 ) { AstarNode *node1, *node2; node1 = (AstarNode *) object1; node2 = (AstarNode *) object2; Index: NetPanzer/Classes/AI/PathList.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/AI/PathList.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PathList.cpp --- NetPanzer/Classes/AI/PathList.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/AI/PathList.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PathList.hpp" unsigned long DEFAULT_PATH_LIST_SIZE = 1000; PathList::PathList( void ) { list = NULL; first = 0; last = first; } Index: NetPanzer/Classes/AI/PathingState.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/AI/PathingState.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PathingState.cpp --- NetPanzer/Classes/AI/PathingState.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/AI/PathingState.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PathingState.hpp" float PathingState::astar_gen_time = 0.0; float PathingState::astar_gen_time_total = 0.0; unsigned long PathingState::path_length = 0; unsigned long PathingState::path_gen_count = 0; unsigned long PathingState::update_gen_count = 0; unsigned long PathingState::path_cache_hits = 0; unsigned long PathingState::path_cache_misses = 0; Index: NetPanzer/Classes/Network/ClientConnectDaemon.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/ClientConnectDaemon.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ClientConnectDaemon.cpp --- NetPanzer/Classes/Network/ClientConnectDaemon.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/Network/ClientConnectDaemon.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ClientConnectDaemon.hpp" #include #include "PlayerInterface.hpp" #include "UnitInterface.hpp" #include "Client.hpp" #include "GameConfig.hpp" #include "GameManager.hpp" Index: NetPanzer/Classes/Network/ClientMessageRouter.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/ClientMessageRouter.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ClientMessageRouter.cpp --- NetPanzer/Classes/Network/ClientMessageRouter.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/Network/ClientMessageRouter.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ClientMessageRouter.hpp" #include "Client.hpp" #include "ClientConnectDaemon.hpp" #include "GameManager.hpp" #include "UnitNetMessage.hpp" #include "PlayerNetMessage.hpp" #include "SystemNetMessage.hpp" Index: NetPanzer/Classes/Network/NetMessageEncoder.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/NetMessageEncoder.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetMessageEncoder.cpp --- NetPanzer/Classes/Network/NetMessageEncoder.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/Network/NetMessageEncoder.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetMessageEncoder.hpp" #include "string.h" #include "NetworkState.hpp" #include "Server.hpp" #include "Client.hpp" NetMessageEncoder PUBLIC_MESSAGE_ENCODER; Index: NetPanzer/Classes/Network/NetMessageLog.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/NetMessageLog.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetMessageLog.cpp --- NetPanzer/Classes/Network/NetMessageLog.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/Network/NetMessageLog.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetMessageLog.hpp" #include "Server.hpp" #include "SystemNetMessage.hpp" #include "ConnectNetMessage.hpp" #include "PlayerNetMessage.hpp" #include "UnitNetMessage.hpp" #include "TerminalNetMesg.hpp" #include "ObjectiveNetMessage.hpp" Index: NetPanzer/Classes/Network/NetPacketQueues.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/NetPacketQueues.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetPacketQueues.cpp --- NetPanzer/Classes/Network/NetPacketQueues.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/Network/NetPacketQueues.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetPacketQueues.hpp" #include "CodeWiz.hpp" #include "ConsoleInterface.hpp" #define _DEFAULT_WINDOW_TIME (0.15) // in (seconds) 150ms #define _WINDOW_ESTIMATE_WEIGHT (0.25) // 0 <= weight <= 1 #define _WINDOW_ESTIMATE_BOUND (0.15) // in seconds; ReorderQueue::ReorderQueue( ) Index: NetPanzer/Classes/Network/NetworkClient.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/NetworkClient.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetworkClient.cpp --- NetPanzer/Classes/Network/NetworkClient.cpp 1 Dec 2002 17:51:46 -0000 1.1 +++ NetPanzer/Classes/Network/NetworkClient.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetworkGlobals.hpp" #include "NetworkClient.hpp" #include "NetworkState.hpp" #include "NetMessageLog.hpp" #include "ClientServerNetMessage.hpp" #include "ConnectNetMessage.hpp" Index: NetPanzer/Classes/Network/NetworkInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/NetworkInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetworkInterface.cpp --- NetPanzer/Classes/Network/NetworkInterface.cpp 1 Dec 2002 17:51:50 -0000 1.1 +++ NetPanzer/Classes/Network/NetworkInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetworkInterface.hpp" NetPacket TEMP_PACKET; void EnqueueIncomingPacket( void *message, unsigned long message_size, DPID toID, DPID fromID ) { TEMP_PACKET.toID = toID; TEMP_PACKET.fromID = fromID; if( message_size > _MAX_NET_PACKET_SIZE ) Index: NetPanzer/Classes/Network/NetworkServer.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/NetworkServer.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetworkServer.cpp --- NetPanzer/Classes/Network/NetworkServer.cpp 1 Dec 2002 17:51:50 -0000 1.1 +++ NetPanzer/Classes/Network/NetworkServer.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetworkServer.hpp" #include "ClientServerNetMessage.hpp" #include "ServerConnectDaemon.hpp" #include "NetMessageLog.hpp" #include "Codewiz.hpp" #include "ConsoleInterface.hpp" Index: NetPanzer/Classes/Network/NetworkState.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/NetworkState.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetworkState.cpp --- NetPanzer/Classes/Network/NetworkState.cpp 1 Dec 2002 17:51:50 -0000 1.1 +++ NetPanzer/Classes/Network/NetworkState.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetworkState.hpp" unsigned short NetworkState::status; long NetworkState::bytes_sent; long NetworkState::bytes_sent_last_sec; float NetworkState::bytes_sent_per_sec; long NetworkState::bytes_received; long NetworkState::bytes_received_last_sec; Index: NetPanzer/Classes/Network/ServerConnectDaemon.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/ServerConnectDaemon.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ServerConnectDaemon.cpp --- NetPanzer/Classes/Network/ServerConnectDaemon.cpp 1 Dec 2002 17:51:50 -0000 1.1 +++ NetPanzer/Classes/Network/ServerConnectDaemon.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ServerConnectDaemon.hpp" #include "NetworkGlobals.hpp" #include "PlayerInterface.hpp" #include "UnitInterface.hpp" #include "ObjectiveInterface.hpp" #include "PowerUpInterface.hpp" #include "MapInterface.hpp" #include "Server.hpp" Index: NetPanzer/Classes/Network/ServerMessageRouter.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/ServerMessageRouter.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ServerMessageRouter.cpp --- NetPanzer/Classes/Network/ServerMessageRouter.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Network/ServerMessageRouter.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ServerMessageRouter.hpp" #include "Server.hpp" #include "ServerConnectDaemon.hpp" #include "UnitInterface.hpp" #include "PlayerInterface.hpp" #include "ObjectiveInterface.hpp" #include "GameManager.hpp" #include "ChatInterface.hpp" Index: NetPanzer/Classes/Network/UnitNetMessage.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Network/UnitNetMessage.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitNetMessage.cpp --- NetPanzer/Classes/Network/UnitNetMessage.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Network/UnitNetMessage.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,17 +8,17 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitNetMessage.hpp" unsigned short UnitOpcodeMessage::realSize( void ) { return( ( sizeof( UnitOpcodeMessage ) - _OPCODE_MESSAGE_LIMIT ) + code_size ); } Index: NetPanzer/Classes/Units/Abrams.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/Abrams.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Abrams.cpp --- NetPanzer/Classes/Units/Abrams.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/Abrams.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Abrams.hpp" #include "UnitProfileInterface.hpp" #include "gdatstct.hpp" #include "Color.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" #include "UnitGlobals.hpp" void Abrams::setUnitProperties( void ) Index: NetPanzer/Classes/Units/Archer.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/Archer.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Archer.cpp --- NetPanzer/Classes/Units/Archer.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/Archer.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Archer.hpp" #include "UnitProfileInterface.hpp" #include "gdatstct.hpp" #include "Color.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" #include "UnitGlobals.hpp" void Archer::setUnitProperties( void ) Index: NetPanzer/Classes/Units/Hammerhead.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/Hammerhead.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Hammerhead.cpp --- NetPanzer/Classes/Units/Hammerhead.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/Hammerhead.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Hammerhead.hpp" #include "UnitProfileInterface.hpp" #include "gdatstct.hpp" #include "Color.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" #include "UnitGlobals.hpp" void Hammerhead::setUnitProperties( void ) Index: NetPanzer/Classes/Units/Humvee.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/Humvee.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Humvee.cpp --- NetPanzer/Classes/Units/Humvee.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/Humvee.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Humvee.hpp" #include "UnitProfileInterface.hpp" #include "gdatstct.hpp" #include "Color.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" #include "GameConfig.hpp" #include "UnitGlobals.hpp" Index: NetPanzer/Classes/Units/Leopard.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/Leopard.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Leopard.cpp --- NetPanzer/Classes/Units/Leopard.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/Leopard.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Leopard.hpp" #include "UnitProfileInterface.hpp" #include "gdatstct.hpp" #include "Color.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" #include "UnitGlobals.hpp" void Leopard::setUnitProperties( void ) Index: NetPanzer/Classes/Units/Lynx.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/Lynx.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Lynx.cpp --- NetPanzer/Classes/Units/Lynx.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/Lynx.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Lynx.hpp" #include "UnitProfileInterface.hpp" #include "gdatstct.hpp" #include "Color.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" #include "UnitGlobals.hpp" void Lynx::setUnitProperties( void ) Index: NetPanzer/Classes/Units/M109.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/M109.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 M109.cpp --- NetPanzer/Classes/Units/M109.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/M109.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "M109.hpp" #include "UnitProfileInterface.hpp" #include "gdatstct.hpp" #include "Color.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" #include "UnitGlobals.hpp" void M109::setUnitProperties( void ) Index: NetPanzer/Classes/Units/Scorpion.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/Scorpion.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Scorpion.cpp --- NetPanzer/Classes/Units/Scorpion.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/Scorpion.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Scorpion.hpp" #include "UnitProfileInterface.hpp" #include "gdatstct.hpp" #include "Color.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" #include "UnitGlobals.hpp" void Scorpion::setUnitProperties( void ) Index: NetPanzer/Classes/Units/SpahPanzer.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/SpahPanzer.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SpahPanzer.cpp --- NetPanzer/Classes/Units/SpahPanzer.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/SpahPanzer.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SpahPanzer.hpp" #include "UnitProfileInterface.hpp" #include "gdatstct.hpp" #include "Color.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" #include "UnitGlobals.hpp" void SpahPanzer::setUnitProperties( void ) Index: NetPanzer/Classes/Units/UnitGlobals.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/UnitGlobals.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitGlobals.cpp --- NetPanzer/Classes/Units/UnitGlobals.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/UnitGlobals.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitGlobals.hpp" #include "Palette.hpp" #include "Surface.hpp" // Comment this out if you want green units #define _GRAY_MAPPED_UNITS PackedSurface gAbramsTurret; PackedSurface gAbramsBody; Index: NetPanzer/Classes/Units/Valentine.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/Valentine.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Valentine.cpp --- NetPanzer/Classes/Units/Valentine.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/Valentine.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Valentine.hpp" #include "UnitProfileInterface.hpp" #include "gdatstct.hpp" #include "Color.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" #include "UnitGlobals.hpp" void Valentine::setUnitProperties( void ) Index: NetPanzer/Classes/Units/Vehicle.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Units/Vehicle.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Vehicle.cpp --- NetPanzer/Classes/Units/Vehicle.cpp 1 Dec 2002 17:51:51 -0000 1.1 +++ NetPanzer/Classes/Units/Vehicle.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Vehicle.hpp" #include #include "MapInterface.hpp" #include "PathScheduler.hpp" #include "ProjectileInterface.hpp" #include "NetworkState.hpp" Index: NetPanzer/Classes/Weapons/BulletWeapon.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Weapons/BulletWeapon.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 BulletWeapon.cpp --- NetPanzer/Classes/Weapons/BulletWeapon.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Classes/Weapons/BulletWeapon.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "BulletWeapon.hpp" #include "UnitMessageTypes.hpp" #include "UnitInterface.hpp" #include "NetworkState.hpp" #include "StaticsInterface.hpp" #include "WorldViewInterface.hpp" #include "DDHardSurface.hpp" #include "dsound.hpp" #include "ParticleInterface.hpp" #include "WeaponGlobals.hpp" Index: NetPanzer/Classes/Weapons/MissleWeapon.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Weapons/MissleWeapon.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MissleWeapon.cpp --- NetPanzer/Classes/Weapons/MissleWeapon.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Classes/Weapons/MissleWeapon.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "MissleWeapon.hpp" #include "UnitMessageTypes.hpp" #include "UnitInterface.hpp" #include "NetworkState.hpp" #include "StaticsInterface.hpp" #include "WorldViewInterface.hpp" #include "DDHardSurface.hpp" #include "dsound.hpp" #include "ParticleInterface.hpp" #include "WeaponGlobals.hpp" Index: NetPanzer/Classes/Weapons/ShellWeapon.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Weapons/ShellWeapon.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ShellWeapon.cpp --- NetPanzer/Classes/Weapons/ShellWeapon.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Classes/Weapons/ShellWeapon.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ShellWeapon.hpp" #include "UnitMessageTypes.hpp" #include "UnitInterface.hpp" #include "NetworkState.hpp" #include "StaticsInterface.hpp" #include "WorldViewInterface.hpp" #include "DDHardSurface.hpp" #include "dsound.hpp" #include "Particle2D.hpp" #include "WeaponGlobals.hpp" Index: NetPanzer/Classes/Weapons/Weapon.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Weapons/Weapon.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Weapon.cpp --- NetPanzer/Classes/Weapons/Weapon.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Classes/Weapons/Weapon.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Weapon.hpp" #include "UnitMessageTypes.hpp" #include "UnitInterface.hpp" #include "NetworkState.hpp" // NOTE: Temp until new sprites put in #include "StaticsInterface.hpp" #include "WorldViewInterface.hpp" Index: NetPanzer/Classes/Weapons/WeaponGlobals.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Classes/Weapons/WeaponGlobals.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 WeaponGlobals.cpp --- NetPanzer/Classes/Weapons/WeaponGlobals.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Classes/Weapons/WeaponGlobals.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "WeaponGlobals.hpp" int gShellVelocity = 30; int gMissleMaxVelocity = 60; int gMissleThrustForce = 5; int gBulletVelocity = 60; Index: NetPanzer/Core/loadPics.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Core/loadPics.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 loadPics.cpp --- NetPanzer/Core/loadPics.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Core/loadPics.cpp 30 Aug 2003 00:58:52 -0000 @@ -12,21 +12,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ //////////////////////////////////////////////////////////////////////////// // Includes. //////////////////////////////////////////////////////////////////////////// -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Surface.hpp" #include "loadPics.hpp" //////////////////////////////////////////////////////////////////////////// // Externs. //////////////////////////////////////////////////////////////////////////// Surface mouseArrow; Index: NetPanzer/Core/netPanzerGlobals.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Core/netPanzerGlobals.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 netPanzerGlobals.cpp --- NetPanzer/Core/netPanzerGlobals.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Core/netPanzerGlobals.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "netPanzerGlobals.h" #include unsigned short MOUSE_X; unsigned short MOUSE_Y; unsigned short MAKE_LEFT_MOUSE_BUTTON; unsigned short MAKE_RIGHT_MOUSE_BUTTON; unsigned short MAKE_MID_MOUSE_BUTTON; unsigned char MOUSE_BUTTON_MASK; Index: NetPanzer/Core/netPanzerMain.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Core/netPanzerMain.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 netPanzerMain.cpp --- NetPanzer/Core/netPanzerMain.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Core/netPanzerMain.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "netPanzerMain.h" #include #include "gapp.hpp" #include "netPanzerGlobals.h" #include "GameManager.hpp" BOOL netPanzerInitialize( const char *command_line ) { Index: NetPanzer/Core/netPanzerThread.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Core/netPanzerThread.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 netPanzerThread.cpp --- NetPanzer/Core/netPanzerThread.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Core/netPanzerThread.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "netPanzerThread.h" #include "netPanzerGlobals.h" #include "netPanzerMain.h" #include #include "GameManager.hpp" VOID PanzerThread(PVOID pvoid) { Index: NetPanzer/Core/netPanzerWinMain.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Core/netPanzerWinMain.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 netPanzerWinMain.cpp --- NetPanzer/Core/netPanzerWinMain.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Core/netPanzerWinMain.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include #include "netPanzerWinMain.h" #include "netPanzerWinProc.h" #include "gapp.hpp" #include "netPanzerGlobals.h" #include "netPanzerThread.h" #include "netPanzerMain.h" #include "resource.h" #include "GameManager.hpp" Index: NetPanzer/Core/netPanzerWinProc.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Core/netPanzerWinProc.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 netPanzerWinProc.cpp --- NetPanzer/Core/netPanzerWinProc.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Core/netPanzerWinProc.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "netPanzerWinProc.h" #include "netPanzerGlobals.h" #include "netPanzerMain.h" #include "gapp.hpp" #include "Win32Mouse.hpp" #include "MouseInterface.hpp" #include "KeyboardInterface.hpp" #include "DirectDrawGlobals.hpp" #include "DirectPlay.h" #include "winsockglobals.h" Index: NetPanzer/Interfaces/ChatInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/ChatInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ChatInterface.cpp --- NetPanzer/Interfaces/ChatInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/ChatInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ChatInterface.hpp" #include "PlayerInterface.hpp" #include "NetworkState.hpp" #include "Server.hpp" #include "Client.hpp" #include "ConsoleInterface.hpp" SystemChatMesgRequest ChatInterface::current_chat_mesg; Index: NetPanzer/Interfaces/Client.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/Client.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Client.cpp --- NetPanzer/Interfaces/Client.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/Client.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,14 +8,14 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Client.hpp" NetworkClient *CLIENT; Index: NetPanzer/Interfaces/ConsoleInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/ConsoleInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ConsoleInterface.cpp --- NetPanzer/Interfaces/ConsoleInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/ConsoleInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ConsoleInterface.hpp" #include "KeyScanCodeDefs.h" #include "GameConfig.hpp" //GameConfig::getConsoleTextColor() FILE * ConsoleInterface::con_file; boolean ConsoleInterface::log_file_active; boolean ConsoleInterface::stdout_pipe; Index: NetPanzer/Interfaces/GameConfig.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/GameConfig.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GameConfig.cpp --- NetPanzer/Interfaces/GameConfig.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/GameConfig.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GameConfig.hpp" //#include "lua.h" //#include "lualib.h" char GameConfig::UnitColor; char GameConfig::GameMode; //Skirmish or Multiplayer char GameConfig::GameType; //Objectives, FragLimit, TimeLimit char GameConfig::HostOrJoin; // 1=host, 2=join char GameConfig::VehicleGeneration; Index: NetPanzer/Interfaces/GameControlRulesDaemon.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/GameControlRulesDaemon.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GameControlRulesDaemon.cpp --- NetPanzer/Interfaces/GameControlRulesDaemon.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/GameControlRulesDaemon.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GameControlRulesDaemon.hpp" #include "GameManager.hpp" #include "GameConfig.hpp" #include "PlayerInterface.hpp" #include "ObjectiveInterface.hpp" #include "MapsManager.hpp" #include "NetworkState.hpp" Index: NetPanzer/Interfaces/GameManager.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/GameManager.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GameManager.cpp --- NetPanzer/Interfaces/GameManager.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/GameManager.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GameManager.hpp" #include #include #include // ** netPanzer Core Includes #include "gapp.hpp" #include "netPanzerGlobals.h" Index: NetPanzer/Interfaces/KeyboardInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/KeyboardInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 KeyboardInterface.cpp --- NetPanzer/Interfaces/KeyboardInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/KeyboardInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "KeyboardInterface.hpp" #include "DirectInput.hpp" char KeyboardInterface::key_table[256]; char KeyboardInterface::previous_key_state[256]; char KeyboardInterface::char_buffer[ _CHAR_BUFFER_SIZE ]; unsigned long KeyboardInterface::char_buffer_front = 0; unsigned long KeyboardInterface::char_buffer_rear = 0; Index: NetPanzer/Interfaces/MapInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/MapInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MapInterface.cpp --- NetPanzer/Interfaces/MapInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/MapInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "MapInterface.hpp" #include #include #include #include "mapdata.hpp" WorldMap MapInterface::main_map; SpawnList MapInterface::spawn_list; WadMapTable MapInterface::wad_mapping_table; Index: NetPanzer/Interfaces/MapsManager.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/MapsManager.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MapsManager.cpp --- NetPanzer/Interfaces/MapsManager.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/MapsManager.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include #include #include "MapsManager.hpp" #include "MapFileStruct.hpp" FileList MapsManager::master_maps_list; unsigned long MapsManager::map_cycle_index; Index: NetPanzer/Interfaces/MiniMapInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/MiniMapInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MiniMapInterface.cpp --- NetPanzer/Interfaces/MiniMapInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/MiniMapInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "MiniMapInterface.hpp" #include "WorldInputCmdProcessor.hpp" #include "UnitInterface.hpp" #include "WorldViewInterface.hpp" #include "MapInterface.hpp" #include "PathScheduler.hpp" #include "ObjectiveInterface.hpp" #include "GameConfig.hpp" Index: NetPanzer/Interfaces/MouseInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/MouseInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MouseInterface.cpp --- NetPanzer/Interfaces/MouseInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/MouseInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "MouseInterface.hpp" #include #include "Win32Mouse.hpp" #include "netPanzerGlobals.h" #include "DDHardSurface.hpp" #include "cMouse.hpp" Index: NetPanzer/Interfaces/NetworkClientDPlay.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/NetworkClientDPlay.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetworkClientDPlay.cpp --- NetPanzer/Interfaces/NetworkClientDPlay.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/NetworkClientDPlay.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetworkClientDPlay.hpp" #include "gapp.hpp" #include "NetworkState.hpp" #include "NetMessageLog.hpp" #include "Codewiz.hpp" #include "DirectPlay.h" Index: NetPanzer/Interfaces/NetworkClientWinSock.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/NetworkClientWinSock.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetworkClientWinSock.cpp --- NetPanzer/Interfaces/NetworkClientWinSock.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/NetworkClientWinSock.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetworkClientWinSock.hpp" #include "gapp.hpp" #include "NetworkState.hpp" #include "NetMessageLog.hpp" #include "Codewiz.hpp" #include "WinsockGlobals.h" Index: NetPanzer/Interfaces/NetworkServerDPlay.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/NetworkServerDPlay.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetworkServerDPlay.cpp --- NetPanzer/Interfaces/NetworkServerDPlay.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/NetworkServerDPlay.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetworkServerDPlay.hpp" #include "gapp.hpp" #include "NetMessageLog.hpp" #include "DirectPlay.h" #include "DPlayError.hpp" #include "DirectDrawGlobals.hpp" Index: NetPanzer/Interfaces/NetworkServerWinSock.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/NetworkServerWinSock.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 NetworkServerWinSock.cpp --- NetPanzer/Interfaces/NetworkServerWinSock.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/NetworkServerWinSock.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "NetworkServerWinSock.hpp" #include "gapp.hpp" #include "NetMessageLog.hpp" #include "WinsockGlobals.h" #include "WinsockClientList.h" #include "WinsockServer.h" Index: NetPanzer/Interfaces/ObjectiveInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/ObjectiveInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ObjectiveInterface.cpp --- NetPanzer/Interfaces/ObjectiveInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/ObjectiveInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ObjectiveInterface.hpp" #include #include "MapInterface.hpp" #include "PlayerInterface.hpp" #include "Outpost.hpp" #include "ObjectiveNetMessage.hpp" Index: NetPanzer/Interfaces/PathScheduler.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/PathScheduler.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PathScheduler.cpp --- NetPanzer/Interfaces/PathScheduler.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/PathScheduler.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PathScheduler.hpp" #include "PathingState.hpp" void PathCache::initialize( void ) { initialize( 10 ); } Index: NetPanzer/Interfaces/PlayerInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/PlayerInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PlayerInterface.cpp --- NetPanzer/Interfaces/PlayerInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/PlayerInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PlayerInterface.hpp" #include "UnitInterface.hpp" #include "ObjectiveInterface.hpp" #include "PlayerNetMessage.hpp" #include "Server.hpp" #include "ConsoleInterface.hpp" Index: NetPanzer/Interfaces/PowerUpInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/PowerUpInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PowerUpInterface.cpp --- NetPanzer/Interfaces/PowerUpInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/PowerUpInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PowerUpInterface.hpp" #include #include "GameConfig.hpp" #include "MapInterface.hpp" #include "PlayerInterface.hpp" Index: NetPanzer/Interfaces/ProjectileInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/ProjectileInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ProjectileInterface.cpp --- NetPanzer/Interfaces/ProjectileInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/ProjectileInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ProjectileInterface.hpp" #include "dsound.hpp" #include "ParticleInterface.hpp" #include "MissleWeapon.hpp" #include "BulletWeapon.hpp" #include "ShellWeapon.hpp" #include "WorldViewInterface.hpp" #include "Math.hpp" Index: NetPanzer/Interfaces/Server.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/Server.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Server.cpp --- NetPanzer/Interfaces/Server.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/Server.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,14 +8,14 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Server.hpp" NetworkServer *SERVER; Index: NetPanzer/Interfaces/StaticsInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/StaticsInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 StaticsInterface.cpp --- NetPanzer/Interfaces/StaticsInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/StaticsInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "StaticsInterface.hpp" PArrayGrowable StaticsInterface::static_sprite_list; void StaticsInterface::initialize( void ) { static_sprite_list.initialize( 200, 25, 0xFFFFFFFF ); } Index: NetPanzer/Interfaces/Stats.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/Stats.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Stats.cpp --- NetPanzer/Interfaces/Stats.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/Stats.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Stats.hpp" #include "ObjectiveInterface.hpp" #include "GameConfig.hpp" int Stats::sort_order_enum = _stats_sort_order_game_type; char Stats::PlayerName[64]; unsigned short Stats::MaxPlayers; unsigned short Stats::Count; unsigned short Stats::NumActivePlayers; Index: NetPanzer/Interfaces/TileInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/TileInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 TileInterface.cpp --- NetPanzer/Interfaces/TileInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/TileInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "TileInterface.hpp" #include "MapInterface.hpp" TileSet TileInterface::tile_set; void TileInterface::loadTileSet( const char *file_path ) { tile_set.loadTileSet( file_path ); } Index: NetPanzer/Interfaces/UnitInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/UnitInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitInterface.cpp --- NetPanzer/Interfaces/UnitInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/UnitInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitInterface.hpp" #include "PlayerInterface.hpp" #include "MapInterface.hpp" #include "WorldViewInterface.hpp" #include "ConsoleInterface.hpp" #include "Vehicle.hpp" #include "Abrams.hpp" #include "Valentine.hpp" #include "Leopard.hpp" Index: NetPanzer/Interfaces/UnitProfileInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/UnitProfileInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitProfileInterface.cpp --- NetPanzer/Interfaces/UnitProfileInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/UnitProfileInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitProfileInterface.hpp" #include #include #include typedef struct Index: NetPanzer/Interfaces/WorldViewInterface.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Interfaces/WorldViewInterface.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 WorldViewInterface.cpp --- NetPanzer/Interfaces/WorldViewInterface.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Interfaces/WorldViewInterface.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,19 +8,19 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "WorldViewInterface.hpp" ViewCamera WorldViewInterface::camera_list[10]; ViewCamera * WorldViewInterface::main_camera = &camera_list[0]; WorldViewInterface::WorldViewInterface() { } Index: NetPanzer/Port/Gdatstct.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Port/Gdatstct.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Gdatstct.cpp --- NetPanzer/Port/Gdatstct.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Port/Gdatstct.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "gdatstct.hpp" #include #include #include #include "aliasdef.h" #include "globals.h" Index: NetPanzer/Port/blitters.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Port/blitters.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 blitters.cpp --- NetPanzer/Port/blitters.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Port/blitters.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "blitters.h" #include "DirectDrawGlobals.hpp" #if _MSC_VER > 1000 #pragma optimize( "", off ) #endif void blit_partial_xy( unsigned char *tile_ptr,unsigned char *buffer_ptr,short y_size,short x_size) { assert(isValidPtr(tile_ptr)); Index: NetPanzer/Port/pzrportglobals.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Port/pzrportglobals.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 pzrportglobals.cpp --- NetPanzer/Port/pzrportglobals.cpp 1 Dec 2002 17:51:56 -0000 1.1 +++ NetPanzer/Port/pzrportglobals.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "globals.h" short DISPLAY_PAGE_STATE; unsigned char *TILE_DATA; unsigned char *INTERFACE_BUFFER; //############################################################################# Index: NetPanzer/Views/GameViewGlobals.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/GameViewGlobals.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GameViewGlobals.cpp --- NetPanzer/Views/GameViewGlobals.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/GameViewGlobals.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GameViewGlobals.hpp" iXY exitPos(6, 454); iXY readyPos(480, 32); iXY backPos(347, 454); iXY nextPos(493, 454); iXY mainPos(16, 7); iXY multiPos(169, 7); iXY optionsPos(325, 7); iXY helpPos(480, 7); Index: NetPanzer/Views/Game/AreYouSureExitView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/AreYouSureExitView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 AreYouSureExitView.cpp --- NetPanzer/Views/Game/AreYouSureExitView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/AreYouSureExitView.cpp 30 Aug 2003 00:58:52 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "AreYouSureExitView.hpp" #include "Desktop.hpp" #include "GameManager.hpp" //--------------------------------------------------------------------------- static void bYES() { GameManager::drawTextCenteredOnScreen("Exiting", Color::white); Index: NetPanzer/Views/Game/AreYouSureResignView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/AreYouSureResignView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 AreYouSureResignView.cpp --- NetPanzer/Views/Game/AreYouSureResignView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/AreYouSureResignView.cpp 30 Aug 2003 00:58:52 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "AreYouSureResignView.hpp" #include "Desktop.hpp" #include "DirectDrawGlobals.hpp" #include "DDHardSurface.hpp" #include "GameManager.hpp" #include "ParticleSystem2D.hpp" #include "Particle2D.hpp" #include "MenuTemplateView.hpp" #include "DSound.hpp" #include "SoundView.hpp" Index: NetPanzer/Views/Game/ChatView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/ChatView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ChatView.cpp --- NetPanzer/Views/Game/ChatView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/ChatView.cpp 30 Aug 2003 00:58:52 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ChatView.hpp" #include "Desktop.hpp" #include "KeyboardInterface.hpp" #include "ChatInterface.hpp" #include "GameViewGlobals.hpp" ChatView chatView; void addNewChatStringCallBack( const char *message_text ) Index: NetPanzer/Views/Game/CodeStatsView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/CodeStatsView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 CodeStatsView.cpp --- NetPanzer/Views/Game/CodeStatsView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/CodeStatsView.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "CodeStatsView.hpp" #include "GameViewGlobals.hpp" #include "SpriteSorter.hpp" #include "NetworkState.hpp" #include "PathingState.hpp" #include "PathScheduler.hpp" #include "MiniMapInterface.hpp" #include "PlayerInterface.hpp" #include "UnitInterface.hpp" #include "NetworkInterface.hpp" Index: NetPanzer/Views/Game/ControlPaletteView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/ControlPaletteView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ControlPaletteView.cpp --- NetPanzer/Views/Game/ControlPaletteView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/ControlPaletteView.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ControlPaletteView.hpp" #include "cMouse.hpp" #include "MiniMapInterface.hpp" #include "KeyboardInterface.hpp" #include "cMouse.hpp" //int ControlPaletteView::drawMethod = Palette::DRAW_SOLID; Index: NetPanzer/Views/Game/ControlView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/ControlView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ControlView.cpp --- NetPanzer/Views/Game/ControlView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/ControlView.cpp 30 Aug 2003 00:58:52 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ControlView.hpp" #include "cMouse.hpp" #include "MiniMapInterface.hpp" #include "KeyboardInterface.hpp" #include "cMouse.hpp" ControlView::ORIENTATION ControlView::orientation = VERTICAL; int ControlView::mapNavAidSize = 12; Index: NetPanzer/Views/Game/GameInfoView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/GameInfoView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GameInfoView.cpp --- NetPanzer/Views/Game/GameInfoView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/GameInfoView.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GameInfoView.hpp" #include "GameViewGlobals.hpp" #include "Desktop.hpp" #include "GameConfig.hpp" #include "GameManager.hpp" #include "UnitInterface.hpp" #include "PlayerInterface.hpp" #include "NetworkState.hpp" #include "String.hpp" Index: NetPanzer/Views/Game/GameTemplateView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/GameTemplateView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GameTemplateView.cpp --- NetPanzer/Views/Game/GameTemplateView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/GameTemplateView.cpp 30 Aug 2003 00:58:52 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GameTemplateView.hpp" #include "Desktop.hpp" #include "GameViewGlobals.hpp" #include "KeyboardInterface.hpp" #include "WorldInputCmdProcessor.hpp" // GameTemplateView //--------------------------------------------------------------------------- GameTemplateView::GameTemplateView() : View() Index: NetPanzer/Views/Game/GameToolbarView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/GameToolbarView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GameToolbarView.cpp --- NetPanzer/Views/Game/GameToolbarView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/GameToolbarView.cpp 30 Aug 2003 00:58:52 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GameToolbarView.hpp" #include "GameViewGlobals.hpp" #include "Desktop.hpp" #include "GameConfig.hpp" #include "UnitInterface.hpp" #include "PlayerInterface.hpp" #include "WorldInputCmdProcessor.hpp" #include "MiniMapView.hpp" Index: NetPanzer/Views/Game/GameView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/GameView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GameView.cpp --- NetPanzer/Views/Game/GameView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/GameView.cpp 30 Aug 2003 00:58:52 -0000 @@ -13,21 +13,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ ///////////////////////////////////////////////////////////////////////////// // Includes. ///////////////////////////////////////////////////////////////////////////// -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GameView.hpp" #include "Desktop.hpp" #include "TileEngine.hpp" #include "UnitInterface.hpp" #include "ProjectileInterface.hpp" #include "MouseInterface.hpp" #include "ObjectiveInterface.hpp" #include "WorldInputCmdProcessor.hpp" #include "WorldViewInterface.hpp" #include "DDHardSurface.hpp" Index: NetPanzer/Views/Game/GameView.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/GameView.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GameView.hpp --- NetPanzer/Views/Game/GameView.hpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/GameView.hpp 30 Aug 2003 00:58:52 -0000 @@ -19,21 +19,21 @@ #ifndef __GameView_hpp__ #define __GameView_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "View.hpp" //--------------------------------------------------------------------------- class GameView : public View { public: GameView(); void init(); Index: NetPanzer/Views/Game/HelpScrollView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/HelpScrollView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 HelpScrollView.cpp --- NetPanzer/Views/Game/HelpScrollView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/HelpScrollView.cpp 30 Aug 2003 00:58:52 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "HelpScrollView.hpp" #include "gapp.hpp" #include "DSound.hpp" #include "GameView.hpp" #include "GameViewGlobals.hpp" #include "Desktop.hpp" // HelpScrollView //--------------------------------------------------------------------------- Index: NetPanzer/Views/Game/LobbyView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/LobbyView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 LobbyView.cpp --- NetPanzer/Views/Game/LobbyView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/LobbyView.cpp 30 Aug 2003 00:58:52 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "LobbyView.hpp" #include "Desktop.hpp" #include "DirectDraw.hpp" #include "DirectDrawGlobals.hpp" #include "DDHardSurface.hpp" #include "GameManager.hpp" LobbyView lobbyView; Index: NetPanzer/Views/Game/MiniMapOptionsView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/MiniMapOptionsView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MiniMapOptionsView.cpp --- NetPanzer/Views/Game/MiniMapOptionsView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/MiniMapOptionsView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "MiniMapOptionsView.hpp" #include "GameViewGlobals.hpp" #include "GameConfig.hpp" static void bSetPlayerRadarUnitWhite() { GameConfig::setPlayerRadarUnitColor(Color::white); } static void bSetPlayerRadarUnitBlack() { GameConfig::setPlayerRadarUnitColor(Color::black); } static void bSetPlayerRadarUnitGray() { GameConfig::setPlayerRadarUnitColor(Color::gray128); } static void bSetPlayerRadarUnitRed() { GameConfig::setPlayerRadarUnitColor(Color::red); } static void bSetPlayerRadarUnitLightRed() { GameConfig::setPlayerRadarUnitColor(Color::lightRed); } static void bSetPlayerRadarUnitGreen() { GameConfig::setPlayerRadarUnitColor(Color::green); } Index: NetPanzer/Views/Game/MiniMapView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/MiniMapView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MiniMapView.cpp --- NetPanzer/Views/Game/MiniMapView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/MiniMapView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "MiniMapView.hpp" #include "cMouse.hpp" #include "MiniMapInterface.hpp" #include "KeyboardInterface.hpp" #include "cMouse.hpp" #include "loadPics.hpp" #include "WorldInputCmdProcessor.hpp" MiniMapView miniMapView; Index: NetPanzer/Views/Game/MiniRankView.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/MiniRankView.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MiniRankView.hpp --- NetPanzer/Views/Game/MiniRankView.hpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/MiniRankView.hpp 30 Aug 2003 00:58:53 -0000 @@ -17,21 +17,21 @@ */ #ifndef __MiniRankView_hpp__ #define __MiniRankView_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "iXY.hpp" #include "iRect.hpp" #include "Surface.hpp" #include "Stats.hpp" void drawMiniRankView(const Surface &dest) { iXY size(200, 60); Index: NetPanzer/Views/Game/ProgressView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/ProgressView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ProgressView.cpp --- NetPanzer/Views/Game/ProgressView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/ProgressView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ProgressView.hpp" #include "Desktop.hpp" #include "DirectDraw.hpp" #include "DirectDrawGlobals.hpp" #include "DDHardSurface.hpp" #include "GameManager.hpp" ProgressView progressView; Index: NetPanzer/Views/Game/RankView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/RankView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 RankView.cpp --- NetPanzer/Views/Game/RankView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/RankView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "RankView.hpp" #include "Stats.hpp" #include "GameViewGlobals.hpp" #include "SelectionBoxSprite.hpp" // RankView //--------------------------------------------------------------------------- RankView::RankView() : GameTemplateView() { Index: NetPanzer/Views/Game/ResignView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/ResignView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ResignView.cpp --- NetPanzer/Views/Game/ResignView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/ResignView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ResignView.hpp" #include "Desktop.hpp" #include "AreYouSureResignView.hpp" #include "AreYouSureExitView.hpp" //--------------------------------------------------------------------------- static void bResign() { Desktop::setVisibility("ResignView", false); Index: NetPanzer/Views/Game/VehicleSelectionView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/VehicleSelectionView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 VehicleSelectionView.cpp --- NetPanzer/Views/Game/VehicleSelectionView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/VehicleSelectionView.cpp 30 Aug 2003 00:58:53 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "VehicleSelectionView.hpp" #include "unitTypes.hpp" #include "GameViewGlobals.hpp" #include "Desktop.hpp" #include "cMouse.hpp" #include "TerminalNetMesg.hpp" #include "Client.hpp" #include "NetworkState.hpp" #include "WorldInputCmdProcessor.hpp" #include "WorldViewInterface.hpp" Index: NetPanzer/Views/Game/VehicleSelectionView.hpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/VehicleSelectionView.hpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 VehicleSelectionView.hpp --- NetPanzer/Views/Game/VehicleSelectionView.hpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/VehicleSelectionView.hpp 30 Aug 2003 00:58:53 -0000 @@ -17,21 +17,21 @@ */ #ifndef __VehicleSelectionView_hpp__ #define __VehicleSelectionView_hpp__ #if _MSC_VER > 1000 #pragma once #endif -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Surface.hpp" #include "View.hpp" #include "GameTemplateView.hpp" #include "UnitProfileInterface.hpp" #include "AbstractButton.hpp" #include "Button.hpp" // The following may be used some day. /* Index: NetPanzer/Views/Game/WinnerMesgView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/WinnerMesgView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 WinnerMesgView.cpp --- NetPanzer/Views/Game/WinnerMesgView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/WinnerMesgView.cpp 30 Aug 2003 00:58:53 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "WinnerMesgView.hpp" #include "GameViewGlobals.hpp" #include "Desktop.hpp" #include "Stats.hpp" #include "DSound.hpp" #include "DDHardSurface.hpp" #include "DirectDrawGlobals.hpp" #include "ParticleSystem2D.hpp" #include "Particle2D.hpp" #include "GameManager.hpp" Index: NetPanzer/Views/Game/_MiniMapView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/Game/_MiniMapView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 _MiniMapView.cpp --- NetPanzer/Views/Game/_MiniMapView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/Game/_MiniMapView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "MiniMapView.hpp" #include "cMouse.hpp" #include "MiniMapInterface.hpp" #include "KeyboardInterface.hpp" #include "cMouse.hpp" #include "GameConfig.hpp" #include "Desktop.hpp" MiniMapView miniMapView; Index: NetPanzer/Views/MainMenu/HelpView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/HelpView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 HelpView.cpp --- NetPanzer/Views/MainMenu/HelpView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/HelpView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "HelpView.hpp" #include "Desktop.hpp" #include "GameView.hpp" #include "GameViewGlobals.hpp" // HelpView //--------------------------------------------------------------------------- HelpView::HelpView() : MenuTemplateView() { Index: NetPanzer/Views/MainMenu/MainMenuView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/MainMenuView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MainMenuView.cpp --- NetPanzer/Views/MainMenu/MainMenuView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/MainMenuView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "MainMenuView.hpp" #include "Desktop.hpp" #include "DDHardSurface.hpp" #include "DirectDrawGlobals.hpp" #include "FontSystem2D.hpp" #include "GameManager.hpp" #include "GameViewGlobals.hpp" #include "HostJoinTemplateView.hpp" #include "GetSessionView.hpp" Index: NetPanzer/Views/MainMenu/MenuTemplateView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/MenuTemplateView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MenuTemplateView.cpp --- NetPanzer/Views/MainMenu/MenuTemplateView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/MenuTemplateView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "MenuTemplateView.hpp" #include "Desktop.hpp" #include "GameConfig.hpp" #include "GameManager.hpp" #include "dsound.hpp" #include "cMouse.hpp" #include "viewGlobals.hpp" #include "DirectDrawGlobals.hpp" #include "DDHardSurface.hpp" #include "FontSystem2D.hpp" Index: NetPanzer/Views/MainMenu/OptionsTemplateView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/OptionsTemplateView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 OptionsTemplateView.cpp --- NetPanzer/Views/MainMenu/OptionsTemplateView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/OptionsTemplateView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "OptionsTemplateView.hpp" #include "Desktop.hpp" #include "DDHardSurface.hpp" #include "DirectDrawGlobals.hpp" #include "GameViewGlobals.hpp" static void bSound() { if (Desktop::getVisible("GameView")) Index: NetPanzer/Views/MainMenu/OrderingView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/OrderingView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 OrderingView.cpp --- NetPanzer/Views/MainMenu/OrderingView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/OrderingView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "OrderingView.hpp" #include "Desktop.hpp" #include "DDHardSurface.hpp" #include "DirectDrawGlobals.hpp" #include "GameViewGlobals.hpp" static char screenSurfacePathTIL[] = "pics\\backgrounds\\menus\\ordermb.til"; Index: NetPanzer/Views/MainMenu/RMouseHackView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/RMouseHackView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 RMouseHackView.cpp --- NetPanzer/Views/MainMenu/RMouseHackView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/RMouseHackView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "RMouseHackView.hpp" #include "Desktop.hpp" // rMouseDrag //--------------------------------------------------------------------------- void RMouseHackView::rMouseDrag(const iXY &downPos, const iXY &prevPos, const iXY &newPos) { lMouseDown(newPos); lMouseUp(downPos, newPos); Index: NetPanzer/Views/MainMenu/SkirmishView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/SkirmishView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SkirmishView.cpp --- NetPanzer/Views/MainMenu/SkirmishView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/SkirmishView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SkirmishView.hpp" #include "Desktop.hpp" #include "DDHardSurface.hpp" #include "DirectDrawGlobals.hpp" #include "GameViewGlobals.hpp" // SkirmishView //--------------------------------------------------------------------------- SkirmishView::SkirmishView() : MenuTemplateView() Index: NetPanzer/Views/MainMenu/SpecialButtonView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/SpecialButtonView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SpecialButtonView.cpp --- NetPanzer/Views/MainMenu/SpecialButtonView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/SpecialButtonView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SpecialButtonView.hpp" #include "Surface.hpp" #include "PackedSurface.hpp" #include "UtilInterface.hpp" #include "Desktop.hpp" #include "WorldInputCmdProcessor.hpp" // addSpecialButton //--------------------------------------------------------------------------- Index: NetPanzer/Views/MainMenu/Multi/DirectPlayErrorExceptionView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/DirectPlayErrorExceptionView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 DirectPlayErrorExceptionView.cpp --- NetPanzer/Views/MainMenu/Multi/DirectPlayErrorExceptionView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/DirectPlayErrorExceptionView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "DirectPlayErrorExceptionView.hpp" #include "Desktop.hpp" #include "GameManager.hpp" //--------------------------------------------------------------------------- static void bOK() { Desktop::setVisibility("DirectPlayErrorExceptionView", false); Desktop::setVisibility("GetSessionView", true); Index: NetPanzer/Views/MainMenu/Multi/FlagSelectionView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/FlagSelectionView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 FlagSelectionView.cpp --- NetPanzer/Views/MainMenu/Multi/FlagSelectionView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/FlagSelectionView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "FlagSelectionView.hpp" #include "gapp.hpp" #include "DSound.hpp" #include "GameView.hpp" #include "GameViewGlobals.hpp" Surface playerFlag; int playerFlagSelected = 0; Index: NetPanzer/Views/MainMenu/Multi/GetConnectionTypeView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/GetConnectionTypeView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GetConnectionTypeView.cpp --- NetPanzer/Views/MainMenu/Multi/GetConnectionTypeView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/GetConnectionTypeView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GetConnectionTypeView.hpp" #include "Desktop.hpp" #include "GameConfig.hpp" #include "TimerInterface.hpp" #include "GameViewGlobals.hpp" ///////////////////////////////////////////////////////////////////////////// // Button functions. ///////////////////////////////////////////////////////////////////////////// Index: NetPanzer/Views/MainMenu/Multi/GetSessionHostView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/GetSessionHostView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GetSessionHostView.cpp --- NetPanzer/Views/MainMenu/Multi/GetSessionHostView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/GetSessionHostView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GetSessionHostView.hpp" #include "Desktop.hpp" #include "DirectPlay.h" #include "gapp.hpp" #include "DSound.hpp" #include "TimerInterface.hpp" #include "GameViewGlobals.hpp" #include "Client.hpp" Index: NetPanzer/Views/MainMenu/Multi/GetSessionView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/GetSessionView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 GetSessionView.cpp --- NetPanzer/Views/MainMenu/Multi/GetSessionView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/GetSessionView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "GetSessionView.hpp" #include "GetSessionHostView.hpp" #include "Desktop.hpp" #include "GameConfig.hpp" #include "GameManager.hpp" #include "DirectPlay.h" #include "DirectDrawGlobals.hpp" #include "DSound.hpp" #include "gapp.hpp" #include "MouseInterface.hpp" Index: NetPanzer/Views/MainMenu/Multi/HostJoinTemplateView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/HostJoinTemplateView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 HostJoinTemplateView.cpp --- NetPanzer/Views/MainMenu/Multi/HostJoinTemplateView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/HostJoinTemplateView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "HostJoinTemplateView.hpp" #include "Desktop.hpp" #include "HostJoinTemplateView.hpp" #include "GameConfig.hpp" #include "GameManager.hpp" #include "DirectPlay.h" #include "gapp.hpp" #include "DSound.hpp" #include "DirectDrawGlobals.hpp" #include "DDHardSurface.hpp" Index: NetPanzer/Views/MainMenu/Multi/HostOptionsView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/HostOptionsView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 HostOptionsView.cpp --- NetPanzer/Views/MainMenu/Multi/HostOptionsView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/HostOptionsView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "HostOptionsView.hpp" #include "GameConfig.hpp" #include "HostView.hpp" #include "ParticleSystemGlobals.hpp" #include "MapSelectionView.hpp" #include "GameViewGLobals.hpp" int HostOptionsView::cloudCoverageCount = 1; int HostOptionsView::windSpeed = 1; Index: NetPanzer/Views/MainMenu/Multi/HostView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/HostView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 HostView.cpp --- NetPanzer/Views/MainMenu/Multi/HostView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/HostView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "HostView.hpp" #include "GameConfig.hpp" #include "DSound.hpp" #include "GameViewGlobals.hpp" #include "ParticleSystemGlobals.hpp" #include "HostOptionsView.hpp" static char screenSurfacePathTIL[] = "pics\\backgrounds\\menus\\multimb.til"; Index: NetPanzer/Views/MainMenu/Multi/IPAddressView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/IPAddressView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 IPAddressView.cpp --- NetPanzer/Views/MainMenu/Multi/IPAddressView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/IPAddressView.cpp 30 Aug 2003 00:58:53 -0000 @@ -9,21 +9,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "IPAddressView.h" #include "Desktop.hpp" #include "GameViewGlobals.hpp" #include "gapp.hpp" #include "winsockclient.h" #include "winsockglobals.h" #include "Client.hpp" cInputFieldString IPAddressView::szServer; Index: NetPanzer/Views/MainMenu/Multi/JoinView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/JoinView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 JoinView.cpp --- NetPanzer/Views/MainMenu/Multi/JoinView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/JoinView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "JoinView.hpp" #include "Desktop.hpp" #include "GameConfig.hpp" #include "GameManager.hpp" #include "DirectPlay.h" #include "gapp.hpp" #include "DSound.hpp" #include "DirectDrawGlobals.hpp" #include "GameManager.hpp" #include "GameViewGlobals.hpp" Index: NetPanzer/Views/MainMenu/Multi/MapSelectionView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/MapSelectionView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 MapSelectionView.cpp --- NetPanzer/Views/MainMenu/Multi/MapSelectionView.cpp 1 Dec 2002 17:52:00 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/MapSelectionView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "MapSelectionView.hpp" #include "gapp.hpp" #include "DSound.hpp" #include "GameConfig.hpp" #include "GameViewGlobals.hpp" #include "HostOptionsView.hpp" #include "UtilInterface.hpp" #include "MapFileStruct.hpp" Index: NetPanzer/Views/MainMenu/Multi/PlayerNameView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/PlayerNameView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PlayerNameView.cpp --- NetPanzer/Views/MainMenu/Multi/PlayerNameView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/PlayerNameView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PlayerNameView.hpp" #include "GameViewGLobals.hpp" #include "GameConfig.hpp" cInputFieldString PlayerNameView::playerName; // PlayerNameView //--------------------------------------------------------------------------- PlayerNameView::PlayerNameView() : View() Index: NetPanzer/Views/MainMenu/Multi/UnitColorView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/UnitColorView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitColorView.cpp --- NetPanzer/Views/MainMenu/Multi/UnitColorView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/UnitColorView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitColorView.hpp" #include "gapp.hpp" #include "DSound.hpp" #include "GameView.hpp" #include "GameViewGlobals.hpp" #include "ColorTable.hpp" static float maxPercent = 3.5f; static float minPercent = 0.5f; static float incrementPercent = 0.025f; Index: NetPanzer/Views/MainMenu/Multi/UnitSelectionView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Multi/UnitSelectionView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 UnitSelectionView.cpp --- NetPanzer/Views/MainMenu/Multi/UnitSelectionView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/Multi/UnitSelectionView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "UnitSelectionView.hpp" #include "gapp.hpp" #include "DSound.hpp" #include "GameView.hpp" #include "GameViewGlobals.hpp" // UnitSelectionView //--------------------------------------------------------------------------- UnitSelectionView::UnitSelectionView() : View() Index: NetPanzer/Views/MainMenu/Options/ControlsView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Options/ControlsView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 ControlsView.cpp --- NetPanzer/Views/MainMenu/Options/ControlsView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/Options/ControlsView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "ControlsView.hpp" #include "Desktop.hpp" #include "DDHardSurface.hpp" #include "DirectDrawGlobals.hpp" #include "JoystickInterface.hpp" #include "GameConfig.hpp" #include "GameViewGlobals.hpp" static char screenSurfacePathTIL[] = "pics\\backgrounds\\menus\\optionmb.til"; Index: NetPanzer/Views/MainMenu/Options/InterfaceView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Options/InterfaceView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 InterfaceView.cpp --- NetPanzer/Views/MainMenu/Options/InterfaceView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/Options/InterfaceView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "InterfaceView.hpp" #include "GameConfig.hpp" #include "GameViewGlobals.hpp" #include "Desktop.hpp" static void bIncreaseScrollRate() { GameConfig::setScrollRate(GameConfig::getScrollRate() + 100); } Index: NetPanzer/Views/MainMenu/Options/SoundView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Options/SoundView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 SoundView.cpp --- NetPanzer/Views/MainMenu/Options/SoundView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/Options/SoundView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "SoundView.hpp" #include "GameConfig.hpp" #include "GameViewGlobals.hpp" #include "Desktop.hpp" static const char *getSoundState() { return GameConfig::getSoundStateString(); } Index: NetPanzer/Views/MainMenu/Options/VisualsView.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/NetPanzer/Views/MainMenu/Options/VisualsView.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 VisualsView.cpp --- NetPanzer/Views/MainMenu/Options/VisualsView.cpp 1 Dec 2002 17:52:08 -0000 1.1 +++ NetPanzer/Views/MainMenu/Options/VisualsView.cpp 30 Aug 2003 00:58:53 -0000 @@ -10,21 +10,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "VisualsView.hpp" #include "ParticleSystemGlobals.hpp" #include "GameConfig.hpp" #include "GameManager.hpp" #include "GameViewGlobals.hpp" #include "Desktop.hpp" static String getDisplayShadows() { Index: PyroUtil/PaletteFix/PaletteFix.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/PyroUtil/PaletteFix/PaletteFix.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 PaletteFix.cpp --- PyroUtil/PaletteFix/PaletteFix.cpp 1 Dec 2002 17:52:09 -0000 1.1 +++ PyroUtil/PaletteFix/PaletteFix.cpp 30 Aug 2003 00:58:53 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "PaletteFix.hpp" #include #include #include "resource.h" struct LogicalPalette { WORD palVersion; WORD palNumEntries; Index: Setup/source/netPanzerSetup.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Setup/source/netPanzerSetup.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 netPanzerSetup.cpp --- Setup/source/netPanzerSetup.cpp 1 Dec 2002 17:52:09 -0000 1.1 +++ Setup/source/netPanzerSetup.cpp 30 Aug 2003 00:58:53 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "netPanzerSetup.hpp" #include #include #include #include #include #define LoadStrFromRes(uID,lpBuffer) \ LoadString (GetModuleHandle(NULL),\ Index: Win32/Win32Console.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Win32/Win32Console.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Win32Console.cpp --- Win32/Win32Console.cpp 1 Dec 2002 17:52:09 -0000 1.1 +++ Win32/Win32Console.cpp 30 Aug 2003 00:58:53 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include #include #include void Win32ConsolePrint( const char *string ) { HANDLE stdout_handle; stdout_handle = GetStdHandle( STD_OUTPUT_HANDLE ); Index: Win32/Win32Mouse.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Win32/Win32Mouse.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 Win32Mouse.cpp --- Win32/Win32Mouse.cpp 1 Dec 2002 17:52:09 -0000 1.1 +++ Win32/Win32Mouse.cpp 30 Aug 2003 00:58:53 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "Win32Mouse.hpp" #include "gapp.hpp" #include void Win32GetMousePos( long *x_pos, long *y_pos ) { RECT client_area; POINT pos; GetCursorPos( &pos ); Index: Win32/WinTimer.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Win32/WinTimer.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 WinTimer.cpp --- Win32/WinTimer.cpp 1 Dec 2002 17:52:09 -0000 1.1 +++ Win32/WinTimer.cpp 30 Aug 2003 00:58:53 -0000 @@ -8,21 +8,21 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "WinTimer.hpp" unsigned long WinTimer::MMTimerDelay; unsigned long WinTimer::MMTimerResolution; unsigned long WinTimer::TimerType; double WinTimer::TimerResolution; double WinTimer::TimerFrequency; double WinTimer::MasterClock; Index: Win32/gapp.cpp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Win32/gapp.cpp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 gapp.cpp --- Win32/gapp.cpp 1 Dec 2002 17:52:09 -0000 1.1 +++ Win32/gapp.cpp 30 Aug 2003 00:58:53 -0000 @@ -8,14 +8,14 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "stdafx.hpp" +#include "Stdafx.hpp" #include "gapp.hpp" GlobalApp gapp; Index: Workspace/netPanzerBuildTree/netPanzer/netPanzer.dsp =================================================================== RCS file: /cvsroot/netpanzer/netpanzer/src/Workspace/netPanzerBuildTree/netPanzer/netPanzer.dsp,v retrieving revision 1.1 diff -w -u -1 -0 -r1.1 netPanzer.dsp --- Workspace/netPanzerBuildTree/netPanzer/netPanzer.dsp 1 Dec 2002 17:52:09 -0000 1.1 +++ Workspace/netPanzerBuildTree/netPanzer/netPanzer.dsp 30 Aug 2003 00:58:53 -0000 @@ -757,41 +757,41 @@ # Begin Source File SOURCE=..\..\..\NetPanzer\Classes\Weapons\WeaponGlobals.hpp # End Source File # End Group # Begin Group "AI" # PROP Default_Filter "" # Begin Source File -SOURCE=..\..\..\NetPanzer\Classes\Ai\Astar.cpp +SOURCE=..\..\..\NetPanzer\Classes\AI\Astar.cpp # End Source File # Begin Source File -SOURCE=..\..\..\NetPanzer\Classes\Ai\Astar.hpp +SOURCE=..\..\..\NetPanzer\Classes\AI\Astar.hpp # End Source File # Begin Source File -SOURCE=..\..\..\NetPanzer\Classes\Ai\PathingState.cpp +SOURCE=..\..\..\NetPanzer\Classes\AI\PathingState.cpp # End Source File # Begin Source File -SOURCE=..\..\..\NetPanzer\Classes\Ai\PathingState.hpp +SOURCE=..\..\..\NetPanzer\Classes\AI\PathingState.hpp # End Source File # Begin Source File -SOURCE=..\..\..\NetPanzer\Classes\Ai\PathList.cpp +SOURCE=..\..\..\NetPanzer\Classes\AI\PathList.cpp # End Source File # Begin Source File -SOURCE=..\..\..\NetPanzer\Classes\Ai\PathList.hpp +SOURCE=..\..\..\NetPanzer\Classes\AI\PathList.hpp # End Source File # End Group # Begin Group "Network" # PROP Default_Filter "" # Begin Source File SOURCE=..\..\..\NetPanzer\Classes\Network\ClientConnectDaemon.cpp # End Source File # Begin Source File