From 292c03ab8e9979a3792f8f96e4bad1a9d5b82275 Mon Sep 17 00:00:00 2001 From: Joseph Gilbert Date: Tue, 2 Aug 2005 13:44:49 +0000 Subject: _.NET projectfiles update_ * converted files to .NET 2002 * removed unneeded projectfiles from bullet * PHY_Bullet outputs to correct directories * Bullet linked to activex and blenderplayer * misc updates --- .../SoundSystem/make/msvc_7_0/SoundSystem.vcproj | 5 ++- .../make/msvc_7_0/dummy/DummySoundSystem.vcproj | 5 ++- .../make/msvc_7_0/openal/OpenALSoundSystem.vcproj | 5 ++- intern/bmfont/make/msvc_7_0/bmfont.vcproj | 5 ++- intern/bsp/make/msvc_7_0/bsplib.vcproj | 5 ++- intern/container/make/msvc_7_0/container.vcproj | 5 ++- intern/decimation/make/msvc_7_0/decimation.vcproj | 5 ++- intern/ghost/intern/GHOST_EventPrinter.cpp | 40 +++++++++++++--------- intern/ghost/make/msvc_7_0/ghost.vcproj | 5 ++- .../guardedalloc/make/msvc_7_0/guardedalloc.vcproj | 5 ++- intern/iksolver/make/msvc_7_0/iksolver.vcproj | 5 ++- intern/keymaker/make/msvc_7_0/blenkey.vcproj | 5 ++- intern/make/msvc_7_0/build_install_all.vcproj | 5 ++- intern/make/msvc_7_0/intern.sln | 2 +- intern/memutil/make/msvc_7_0/memutil.vcproj | 5 ++- intern/moto/make/msvc_7_0/moto.vcproj | 5 ++- intern/opennl/make/msvc_7_0/opennl.vcproj | 5 ++- intern/string/make/msvc_7_0/string.vcproj | 5 ++- 18 files changed, 57 insertions(+), 65 deletions(-) (limited to 'intern') diff --git a/intern/SoundSystem/make/msvc_7_0/SoundSystem.vcproj b/intern/SoundSystem/make/msvc_7_0/SoundSystem.vcproj index f0952c582b7..0aff5489175 100644 --- a/intern/SoundSystem/make/msvc_7_0/SoundSystem.vcproj +++ b/intern/SoundSystem/make/msvc_7_0/SoundSystem.vcproj @@ -1,7 +1,7 @@ - - + - - + - - + @@ -241,8 +241,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - + @@ -241,8 +241,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - + @@ -233,8 +233,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - + @@ -241,8 +241,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - + getType() == GHOST_kEventWindowUpdate) return false; - std::cout << "GHOST_EventPrinter::processEvent, time: " << (GHOST_TInt32)event->getTime() << ", type: "; + //std::cout << "GHOST_EventPrinter::processEvent, time: " << (GHOST_TInt32)event->getTime() << ", type: "; switch (event->getType()) { case GHOST_kEventUnknown: - std::cout << "GHOST_kEventUnknown"; handled = false; break; + //std::cout << "GHOST_kEventUnknown"; handled = false; + break; case GHOST_kEventButtonUp: { GHOST_TEventButtonData* buttonData = (GHOST_TEventButtonData*)((GHOST_IEvent*)event)->getData(); - std::cout << "GHOST_kEventCursorButtonUp, button: " << buttonData->button; + //std::cout << "GHOST_kEventCursorButtonUp, button: " << buttonData->button; } break; case GHOST_kEventButtonDown: { GHOST_TEventButtonData* buttonData = (GHOST_TEventButtonData*)((GHOST_IEvent*)event)->getData(); - std::cout << "GHOST_kEventButtonDown, button: " << buttonData->button; + //std::cout << "GHOST_kEventButtonDown, button: " << buttonData->button; } break; case GHOST_kEventWheel: { GHOST_TEventWheelData* wheelData = (GHOST_TEventWheelData*)((GHOST_IEvent*)event)->getData(); - std::cout << "GHOST_kEventWheel, z: " << wheelData->z; + //std::cout << "GHOST_kEventWheel, z: " << wheelData->z; } break; case GHOST_kEventCursorMove: { GHOST_TEventCursorData* cursorData = (GHOST_TEventCursorData*)((GHOST_IEvent*)event)->getData(); - std::cout << "GHOST_kEventCursorMove, (x,y): (" << cursorData->x << "," << cursorData->y << ")"; + //std::cout << "GHOST_kEventCursorMove, (x,y): (" << cursorData->x << "," << cursorData->y << ")"; } break; @@ -88,7 +89,7 @@ bool GHOST_EventPrinter::processEvent(GHOST_IEvent* event) GHOST_TEventKeyData* keyData = (GHOST_TEventKeyData*)((GHOST_IEvent*)event)->getData(); STR_String str; getKeyString(keyData->key, str); - std::cout << "GHOST_kEventKeyUp, key: " << str.Ptr(); + //std::cout << "GHOST_kEventKeyUp, key: " << str.Ptr(); } break; case GHOST_kEventKeyDown: @@ -96,27 +97,34 @@ bool GHOST_EventPrinter::processEvent(GHOST_IEvent* event) GHOST_TEventKeyData* keyData = (GHOST_TEventKeyData*)((GHOST_IEvent*)event)->getData(); STR_String str; getKeyString(keyData->key, str); - std::cout << "GHOST_kEventKeyDown, key: " << str.Ptr(); + //std::cout << "GHOST_kEventKeyDown, key: " << str.Ptr(); } break; case GHOST_kEventQuit: - std::cout << "GHOST_kEventQuit"; break; + //std::cout << "GHOST_kEventQuit"; + break; case GHOST_kEventWindowClose: - std::cout << "GHOST_kEventWindowClose"; break; + //std::cout << "GHOST_kEventWindowClose"; + break; case GHOST_kEventWindowActivate: - std::cout << "GHOST_kEventWindowActivate"; break; + //std::cout << "GHOST_kEventWindowActivate"; + break; case GHOST_kEventWindowDeactivate: - std::cout << "GHOST_kEventWindowDeactivate"; break; + //std::cout << "GHOST_kEventWindowDeactivate"; + break; case GHOST_kEventWindowUpdate: - std::cout << "GHOST_kEventWindowUpdate"; break; + //std::cout << "GHOST_kEventWindowUpdate"; + break; case GHOST_kEventWindowSize: - std::cout << "GHOST_kEventWindowSize"; break; + //std::cout << "GHOST_kEventWindowSize"; + break; default: - std::cout << "not found"; handled = false; break; + //std::cout << "not found"; handled = false; + break; } - std::cout << "\n"; + //std::cout << "\n"; return handled; } diff --git a/intern/ghost/make/msvc_7_0/ghost.vcproj b/intern/ghost/make/msvc_7_0/ghost.vcproj index b39a51b0e92..7ffca906fec 100644 --- a/intern/ghost/make/msvc_7_0/ghost.vcproj +++ b/intern/ghost/make/msvc_7_0/ghost.vcproj @@ -1,7 +1,7 @@ @@ -241,8 +241,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - + - - + @@ -241,8 +241,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - + @@ -239,8 +239,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - + - - + diff --git a/intern/make/msvc_7_0/intern.sln b/intern/make/msvc_7_0/intern.sln index 604cb0bcc74..5d95d6d77ed 100644 --- a/intern/make/msvc_7_0/intern.sln +++ b/intern/make/msvc_7_0/intern.sln @@ -1,4 +1,4 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 +Microsoft Visual Studio Solution File, Format Version 7.00 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "build_install_all", "build_install_all.vcproj", "{02110D03-59DB-4571-8787-72B3C03B2F2D}" ProjectSection(ProjectDependencies) = postProject EndProjectSection diff --git a/intern/memutil/make/msvc_7_0/memutil.vcproj b/intern/memutil/make/msvc_7_0/memutil.vcproj index c538f85450b..d5ba8bff173 100644 --- a/intern/memutil/make/msvc_7_0/memutil.vcproj +++ b/intern/memutil/make/msvc_7_0/memutil.vcproj @@ -1,7 +1,7 @@ @@ -241,8 +241,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - + @@ -241,8 +241,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - + @@ -231,8 +231,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - + @@ -239,8 +239,7 @@ ECHO Done Name="VCAuxiliaryManagedWrapperGeneratorTool"/> - - +