]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/bobtoolz/funchandlers-ctf-GTK.cpp
more eol-style
[xonotic/netradiant.git] / contrib / bobtoolz / funchandlers-ctf-GTK.cpp
index e13b64005e5cceacd940ac779f0182ec4369adbb..b01fc7cb65c58f2af83d5427794901951499fe85 100644 (file)
-/*\r
-BobToolz plugin for GtkRadiant\r
-Copyright (C) 2001 Gordon Biggans\r
-\r
-This library is free software; you can redistribute it and/or\r
-modify it under the terms of the GNU Lesser General Public\r
-License as published by the Free Software Foundation; either\r
-version 2.1 of the License, or (at your option) any later version.\r
-\r
-This library is distributed in the hope that it will be useful,\r
-but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
-Lesser General Public License for more details.\r
-\r
-You should have received a copy of the GNU Lesser General Public\r
-License along with this library; if not, write to the Free Software\r
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
-*/\r
-\r
-#include "StdAfx.h"\r
-\r
-#include "dialogs/dialogs-gtk.h"\r
-\r
-#include "DEntity.h"\r
-#include "DMap.h"\r
-\r
-#include "misc.h"\r
-#include "lists.h"\r
-#include "funchandlers.h"\r
-\r
-// for ctf texture changer\r
-list<Str> clrList_Blue;\r
-list<Str> clrList_Red;\r
-\r
-BOOL clrLst1Loaded = FALSE;\r
-BOOL clrLst2Loaded = FALSE;\r
-\r
-// -------------\r
-\r
-//========================//\r
-//    Helper Functions    //\r
-//========================//\r
-\r
-void LoadLists()\r
-{\r
-       char buffer[256];\r
-\r
-       if(!clrLst1Loaded)\r
-       {\r
-               clrLst1Loaded = LoadExclusionList(GetFilename(buffer, "plugins/bt/ctf-blue.txt"), &clrList_Blue);\r
-               LoadExclusionList(GetFilename(buffer, "plugins/bt/blue.txt"), &clrList_Blue);\r
-       }\r
-       if(!clrLst2Loaded)\r
-       {\r
-               clrLst2Loaded = LoadExclusionList(GetFilename(buffer, "plugins/bt/ctf-red.txt"), &clrList_Red);\r
-               LoadExclusionList(GetFilename(buffer, "plugins/bt/red.txt"), &clrList_Red);\r
-       }\r
-}\r
-\r
-\r
-//========================//\r
-//     Main Functions     //\r
-//========================//\r
-\r
-void DoCTFColourChanger()\r
-{\r
-       if(!clrLst1Loaded || !clrLst2Loaded)\r
-       {\r
-               DoMessageBox("CTF texture lists not found, this function will terminate.", "Error", MB_OK);\r
-               return;\r
-       }\r
-\r
-       int ret = DoCTFColourChangeBox();\r
-       if(ret == IDCANCEL)\r
-               return;\r
-\r
-       int cnt = Min(clrList_Blue.size(), clrList_Red.size());\r
-       \r
-       list<Str>::const_iterator Texture_change;\r
-       list<Str>::const_iterator Texture_new;\r
-\r
-       float fDummy[2];\r
-\r
-       int eCnt = g_FuncTable.m_pfnGetEntityCount();\r
-\r
-       DMap world;\r
-       world.LoadAll(TRUE);\r
-\r
-       if(ret == IDYES)\r
-       {\r
-               Texture_change =        clrList_Blue.begin();\r
-               Texture_new =           clrList_Red.begin();\r
-       }\r
-       else\r
-       {\r
-               Texture_change =        clrList_Red.begin();\r
-               Texture_new =           clrList_Blue.begin();\r
-       }\r
-\r
-       for(int i = 0; i < cnt; i++)\r
-       {\r
-               world.ResetTextures((*Texture_change).c_str(), fDummy, fDummy, 0, (*Texture_new).c_str(), TRUE);\r
-\r
-               Texture_change++;\r
-               Texture_new++;\r
-       }\r
-}\r
-\r
-void DoSwapLights()\r
-{\r
-/*     DMap world;\r
-       world.LoadAll();\r
-\r
-       for(list<DEntity*>::const_iterator loopEnt = world.entityList.begin(); loopEnt != world.entityList.end(); loopEnt++)\r
-       {\r
-               DEntity* e = (*loopEnt);\r
-               DEPair* epLightColour = e->FindEPairByKey("_color");\r
-               if(epLightColour)\r
-               {\r
-                       float r, g, b;\r
-                       sscanf(epLightColour->value, "%f %f %f", &r, &g, &b);\r
-                       sprintf(epLightColour->value, "%f %f %f", b, g, r);\r
-                       DMap::RebuildEntity(e);\r
-               }\r
-       }*/\r
-\r
-       int cnt = g_FuncTable.m_pfnGetEntityCount();\r
-\r
-       for(int i = 0; i < cnt; i++)\r
-       {\r
-               void* ent = g_FuncTable.m_pfnGetEntityHandle(i);\r
-\r
-               for(epair_t* epList = *g_FuncTable.m_pfnGetEntityKeyValList(ent); epList; epList= epList->next)\r
-               {\r
-                       if(!stricmp("_color", epList->key))\r
-                       {\r
-                               float r, g, b;\r
-                               sscanf(epList->value, "%f %f %f", &r, &g, &b);\r
-                               sprintf(epList->value, "%f %f %f", b, g, r);\r
-                       }\r
-               }\r
-       }\r
-}\r
-\r
-void DoChangeAngles()\r
-{\r
-       int cnt = g_FuncTable.m_pfnGetEntityCount();\r
-\r
-       for(int i = 0; i < cnt; i++)\r
-       {\r
-               void* ent = g_FuncTable.m_pfnGetEntityHandle(i);\r
-\r
-               for(epair_t* epList = *g_FuncTable.m_pfnGetEntityKeyValList(ent); epList; epList= epList->next)\r
-               {\r
-                       if(!stricmp("angle", epList->key))\r
-                       {\r
-                               float angle;\r
-                               sscanf(epList->value, "%f", &angle);\r
-                               angle += 180;\r
-                               while(angle > 360)\r
-                                       angle -= 360;\r
-\r
-                               sprintf(epList->value, "%f", angle);\r
-                       }\r
-               }\r
-       }\r
-}\r
-\r
-void DoSwapSpawns()\r
-{\r
-       int cnt = g_FuncTable.m_pfnGetEntityCount();\r
-\r
-       for(int i = 0; i < cnt; i++)\r
-       {\r
-               void* ent = g_FuncTable.m_pfnGetEntityHandle(i);\r
-\r
-               for(epair_t* epList = *g_FuncTable.m_pfnGetEntityKeyValList(ent); epList; epList= epList->next)\r
-               {\r
-                       if(!stricmp("classname", epList->key))\r
-                       {\r
-                               if(!strcmp(epList->value, "team_CTF_redplayer"))\r
-                                       sprintf(epList->value, "team_CTF_blueplayer");\r
-                               else if(!strcmp(epList->value, "team_CTF_blueplayer"))\r
-                                       sprintf(epList->value, "team_CTF_redplayer");\r
-\r
-                               if(!strcmp(epList->value, "team_CTF_redspawn"))\r
-                                       sprintf(epList->value, "team_CTF_bluespawn");\r
-                               else if(!strcmp(epList->value, "team_CTF_bluespawn"))\r
-                                       sprintf(epList->value, "team_CTF_redspawn");\r
-\r
-                               if(!strcmp(epList->value, "team_CTF_redflag"))\r
-                                       sprintf(epList->value, "team_CTF_blueflag");\r
-                               else if(!strcmp(epList->value, "team_CTF_blueflag"))\r
-                                       sprintf(epList->value, "team_CTF_redflag")\r
-                                       ;\r
-                               if(!strcmp(epList->value, "team_redobelisk"))\r
-                                       sprintf(epList->value, "team_blueobelisk");\r
-                               else if(!strcmp(epList->value, "team_blueobelisk"))\r
-                                       sprintf(epList->value, "team_redobelisk");\r
-                       }\r
-               }\r
-       }\r
-}\r
-\r
-/*void test()\r
-{\r
-       DMap world;\r
-       world.LoadAll();\r
-\r
-       for(list<DEntity*>::const_iterator ents = world.entityList.begin(); ents != world.entityList.end(); ents++)\r
-       {\r
-               (*ents)->RemoveFromRadiant();\r
-       }\r
-}*/\r
+/*
+BobToolz plugin for GtkRadiant
+Copyright (C) 2001 Gordon Biggans
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2.1 of the License, or (at your option) any later version.
+
+This library 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
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+*/
+
+#include "StdAfx.h"
+
+#include "dialogs/dialogs-gtk.h"
+
+#include "DEntity.h"
+#include "DMap.h"
+
+#include "misc.h"
+#include "lists.h"
+#include "funchandlers.h"
+
+// for ctf texture changer
+list<Str> clrList_Blue;
+list<Str> clrList_Red;
+
+BOOL clrLst1Loaded = FALSE;
+BOOL clrLst2Loaded = FALSE;
+
+// -------------
+
+//========================//
+//    Helper Functions    //
+//========================//
+
+void LoadLists()
+{
+       char buffer[256];
+
+       if(!clrLst1Loaded)
+       {
+               clrLst1Loaded = LoadExclusionList(GetFilename(buffer, "plugins/bt/ctf-blue.txt"), &clrList_Blue);
+               LoadExclusionList(GetFilename(buffer, "plugins/bt/blue.txt"), &clrList_Blue);
+       }
+       if(!clrLst2Loaded)
+       {
+               clrLst2Loaded = LoadExclusionList(GetFilename(buffer, "plugins/bt/ctf-red.txt"), &clrList_Red);
+               LoadExclusionList(GetFilename(buffer, "plugins/bt/red.txt"), &clrList_Red);
+       }
+}
+
+
+//========================//
+//     Main Functions     //
+//========================//
+
+void DoCTFColourChanger()
+{
+       if(!clrLst1Loaded || !clrLst2Loaded)
+       {
+               DoMessageBox("CTF texture lists not found, this function will terminate.", "Error", MB_OK);
+               return;
+       }
+
+       int ret = DoCTFColourChangeBox();
+       if(ret == IDCANCEL)
+               return;
+
+       int cnt = Min(clrList_Blue.size(), clrList_Red.size());
+       
+       list<Str>::const_iterator Texture_change;
+       list<Str>::const_iterator Texture_new;
+
+       float fDummy[2];
+
+       int eCnt = g_FuncTable.m_pfnGetEntityCount();
+
+       DMap world;
+       world.LoadAll(TRUE);
+
+       if(ret == IDYES)
+       {
+               Texture_change =        clrList_Blue.begin();
+               Texture_new =           clrList_Red.begin();
+       }
+       else
+       {
+               Texture_change =        clrList_Red.begin();
+               Texture_new =           clrList_Blue.begin();
+       }
+
+       for(int i = 0; i < cnt; i++)
+       {
+               world.ResetTextures((*Texture_change).c_str(), fDummy, fDummy, 0, (*Texture_new).c_str(), TRUE);
+
+               Texture_change++;
+               Texture_new++;
+       }
+}
+
+void DoSwapLights()
+{
+/*     DMap world;
+       world.LoadAll();
+
+       for(list<DEntity*>::const_iterator loopEnt = world.entityList.begin(); loopEnt != world.entityList.end(); loopEnt++)
+       {
+               DEntity* e = (*loopEnt);
+               DEPair* epLightColour = e->FindEPairByKey("_color");
+               if(epLightColour)
+               {
+                       float r, g, b;
+                       sscanf(epLightColour->value, "%f %f %f", &r, &g, &b);
+                       sprintf(epLightColour->value, "%f %f %f", b, g, r);
+                       DMap::RebuildEntity(e);
+               }
+       }*/
+
+       int cnt = g_FuncTable.m_pfnGetEntityCount();
+
+       for(int i = 0; i < cnt; i++)
+       {
+               void* ent = g_FuncTable.m_pfnGetEntityHandle(i);
+
+               for(epair_t* epList = *g_FuncTable.m_pfnGetEntityKeyValList(ent); epList; epList= epList->next)
+               {
+                       if(!stricmp("_color", epList->key))
+                       {
+                               float r, g, b;
+                               sscanf(epList->value, "%f %f %f", &r, &g, &b);
+                               sprintf(epList->value, "%f %f %f", b, g, r);
+                       }
+               }
+       }
+}
+
+void DoChangeAngles()
+{
+       int cnt = g_FuncTable.m_pfnGetEntityCount();
+
+       for(int i = 0; i < cnt; i++)
+       {
+               void* ent = g_FuncTable.m_pfnGetEntityHandle(i);
+
+               for(epair_t* epList = *g_FuncTable.m_pfnGetEntityKeyValList(ent); epList; epList= epList->next)
+               {
+                       if(!stricmp("angle", epList->key))
+                       {
+                               float angle;
+                               sscanf(epList->value, "%f", &angle);
+                               angle += 180;
+                               while(angle > 360)
+                                       angle -= 360;
+
+                               sprintf(epList->value, "%f", angle);
+                       }
+               }
+       }
+}
+
+void DoSwapSpawns()
+{
+       int cnt = g_FuncTable.m_pfnGetEntityCount();
+
+       for(int i = 0; i < cnt; i++)
+       {
+               void* ent = g_FuncTable.m_pfnGetEntityHandle(i);
+
+               for(epair_t* epList = *g_FuncTable.m_pfnGetEntityKeyValList(ent); epList; epList= epList->next)
+               {
+                       if(!stricmp("classname", epList->key))
+                       {
+                               if(!strcmp(epList->value, "team_CTF_redplayer"))
+                                       sprintf(epList->value, "team_CTF_blueplayer");
+                               else if(!strcmp(epList->value, "team_CTF_blueplayer"))
+                                       sprintf(epList->value, "team_CTF_redplayer");
+
+                               if(!strcmp(epList->value, "team_CTF_redspawn"))
+                                       sprintf(epList->value, "team_CTF_bluespawn");
+                               else if(!strcmp(epList->value, "team_CTF_bluespawn"))
+                                       sprintf(epList->value, "team_CTF_redspawn");
+
+                               if(!strcmp(epList->value, "team_CTF_redflag"))
+                                       sprintf(epList->value, "team_CTF_blueflag");
+                               else if(!strcmp(epList->value, "team_CTF_blueflag"))
+                                       sprintf(epList->value, "team_CTF_redflag")
+                                       ;
+                               if(!strcmp(epList->value, "team_redobelisk"))
+                                       sprintf(epList->value, "team_blueobelisk");
+                               else if(!strcmp(epList->value, "team_blueobelisk"))
+                                       sprintf(epList->value, "team_redobelisk");
+                       }
+               }
+       }
+}
+
+/*void test()
+{
+       DMap world;
+       world.LoadAll();
+
+       for(list<DEntity*>::const_iterator ents = world.entityList.begin(); ents != world.entityList.end(); ents++)
+       {
+               (*ents)->RemoveFromRadiant();
+       }
+}*/