]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/surfaceplugin.cpp
ABToSVK commit
[xonotic/netradiant.git] / radiant / surfaceplugin.cpp
index b4b73217672f772216332869083c0187f7d59009..3a1ef3065cea50b3fced4eff0752d93a8f0ad8d3 100644 (file)
-/*\r
-Copyright (C) 1999-2007 id Software, Inc. and contributors.\r
-For a list of contributors, see the accompanying CONTRIBUTORS file.\r
-\r
-This file is part of GtkRadiant.\r
-\r
-GtkRadiant is free software; you can redistribute it and/or modify\r
-it under the terms of the GNU General Public License as published by\r
-the Free Software Foundation; either version 2 of the License, or\r
-(at your option) any later version.\r
-\r
-GtkRadiant 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\r
-GNU General Public License for more details.\r
-\r
-You should have received a copy of the GNU General Public License\r
-along with GtkRadiant; if not, write to the Free Software\r
-Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r
-*/\r
-\r
-//-----------------------------------------------------------------------------\r
-//\r
-// DESCRIPTION:\r
-// implementation of isurfaceplugin-interface specifics\r
-\r
-#include "stdafx.h"\r
-\r
-void QERApp_GetTwoSelectedPatch( patchMesh_t **p1, patchMesh_t **p2 )\r
-{\r
-  *p1 = NULL; *p2 = NULL;\r
-  for (brush_t *pb = selected_brushes.next ; pb != &selected_brushes ; pb = pb->next)\r
-  {\r
-    if (pb->patchBrush)\r
-    {\r
-      if (!(*p1))\r
-       *p1 = pb->pPatch;\r
-      else if (!(*p2))\r
-      {\r
-       *p2 = pb->pPatch;\r
-       return;\r
-      }\r
-    }\r
-  }\r
-#ifdef _DEBUG\r
-  Sys_Printf("WARNING: QERApp_GetTwoSelectedPatch failed (did not find two patches)\n");\r
-#endif\r
-  return;\r
-}\r
-\r
-// Nurail: The following functions are used by the Surface Inspector module\r
-\r
-// Queries the number of faces from selected brushes\r
-int SI_GetSelectedFaceCountfromBrushes(void)\r
-{\r
-  face_t       *f;\r
-  brush_t      *b;\r
-  int          num_of_faces = 0;\r
-\r
-  if(selected_brushes.next == &selected_brushes)\r
-    return(0);\r
-\r
-  for(b=selected_brushes.next; b!=&selected_brushes; b=b->next)\r
-    if (!(b->patchBrush))\r
-      for(f=b->brush_faces; f ; f=f->next, num_of_faces++);\r
-\r
-  return num_of_faces;\r
-}\r
-\r
-void SI_GetSelFacesTexdef(texdef_to_face_t *allocd_block_texdef)\r
-{\r
-  int          i;\r
-  face_t       *f;\r
-  brush_t      *b;\r
-  texdef_to_face_t *position, *prev_pos;\r
-\r
-  if(selected_brushes.next != &selected_brushes)\r
-  {\r
-    prev_pos = position = allocd_block_texdef;\r
-    for(b=selected_brushes.next; b!=&selected_brushes; b=b->next)\r
-    {\r
-      if ( !(b->patchBrush) )\r
-      {\r
-        for(f=b->brush_faces; f ; f = f->next)\r
-        {\r
-            position->face = f;\r
-            position->brush = b;\r
-            position->texdef = f->texdef;\r
-            position->orig_texdef = f->texdef;\r
-            prev_pos->next = position;\r
-            prev_pos = position;\r
-            position++;\r
-             }\r
-             prev_pos->next = NULL;\r
-      }\r
-    }\r
-  }\r
-  else if(g_ptrSelectedFaces.GetSize() != 0)\r
-  {\r
-    f = (face_t *) g_ptrSelectedFaces.GetAt(0);\r
-    b = (brush_t *) g_ptrSelectedFaceBrushes.GetAt(0);\r
-    position = (texdef_to_face_t*) allocd_block_texdef;\r
-    position->face = f;\r
-    position->brush = b;\r
-    position->texdef = f->texdef;\r
-    position->orig_texdef = f->texdef;\r
-    prev_pos = position;\r
-    for(i=1; i<g_ptrSelectedFaces.GetSize(); i++)\r
-    {\r
-      f = (face_t *) g_ptrSelectedFaces.GetAt(i);\r
-      b = (brush_t *) g_ptrSelectedFaceBrushes.GetAt(i);\r
-      position = allocd_block_texdef + i;\r
-      position->face = f;\r
-      position->brush = b;\r
-      position->texdef = f->texdef;\r
-      position->orig_texdef = f->texdef;\r
-      prev_pos->next = position;\r
-      prev_pos = position;\r
-    }\r
-    position->next = NULL;\r
-  }\r
-\r
-}\r
-\r
-/*\r
-SetFaceTexdef_Q2\r
-\r
-This doesn't mess with CONTENTS_DETAIL needed for Quake2 content flag\r
-\r
-*/\r
-void SetFaceTexdef_Q2 (face_t *f, texdef_t *texdef, bool bFitScale)\r
-{\r
-\r
-  if(strcmp(f->texdef.GetName(), texdef->GetName()) != 0) // set shader here instead of Brush_Build\r
-    Face_SetShader(f, texdef->GetName());\r
-\r
-               if (bFitScale)\r
-               {\r
-                       f->texdef = *texdef;\r
-                       // fit the scaling of the texture on the actual plane\r
-                       vec3_t p1,p2,p3; // absolute coordinates\r
-                       // compute absolute coordinates\r
-                       ComputeAbsolute(f,p1,p2,p3);\r
-                       // compute the scale\r
-                       vec3_t vx,vy;\r
-                       VectorSubtract(p2,p1,vx);\r
-                       VectorNormalize(vx, vx);\r
-                       VectorSubtract(p3,p1,vy);\r
-                       VectorNormalize(vy, vy);\r
-                       // assign scale\r
-                       VectorScale(vx,texdef->scale[0],vx);\r
-                       VectorScale(vy,texdef->scale[1],vy);\r
-                       VectorAdd(p1,vx,p2);\r
-                       VectorAdd(p1,vy,p3);\r
-                       // compute back shift scale rot\r
-                       AbsoluteToLocal(f->plane,f,p1,p2,p3);\r
-               }\r
-               else\r
-    {\r
-                       f->texdef = *texdef;\r
-    }\r
-  }\r
-\r
-\r
-\r
-void SI_SetTexdef_FaceList(texdef_to_face_t* texdef_face_list, bool b_SetUndoPoint, bool bFit_to_Scale)\r
-{\r
-  texdef_to_face_t* texdef_to_face;\r
-  bool b_isQuake2;\r
-\r
-  if ( ( g_pGameDescription->mGameFile == "q2.game" ) || ( g_pGameDescription->mGameFile == "heretic2.game" ) )\r
-    b_isQuake2 = true;\r
-  else\r
-    b_isQuake2 = false;\r
-\r
-  if (!texdef_face_list)\r
-    return;\r
-    \r
- if (b_SetUndoPoint)\r
- {\r
-    if(g_ptrSelectedFaces.GetSize() > 1)\r
-      Sys_FPrintf(SYS_WRN, "WARNING: Undo NOT supported for multiple face selections\n");\r
-    else if( (selected_brushes.next != &selected_brushes) || (g_ptrSelectedFaces.GetSize() == 1))\r
-    {\r
-      // Give something to undo to\r
-      for(texdef_to_face = texdef_face_list; texdef_to_face; texdef_to_face = texdef_to_face->next)\r
-      if (b_isQuake2)\r
-        SetFaceTexdef_Q2(texdef_to_face->face, &texdef_to_face->orig_texdef, bFit_to_Scale);\r
-      else\r
-        SetFaceTexdef(texdef_to_face->face, &texdef_to_face->orig_texdef, NULL);\r
-\r
-      Undo_Start("set facelist texdefs");\r
-      \r
-      if( selected_brushes.next != &selected_brushes )\r
-        Undo_AddBrushList(&selected_brushes); \r
-      else\r
-        Undo_AddBrush(texdef_face_list->brush);\r
-      \r
-    }\r
- }  \r
-    \r
-  for(texdef_to_face = texdef_face_list; texdef_to_face; texdef_to_face = texdef_to_face->next)\r
-  {\r
-    if (b_isQuake2)\r
-      SetFaceTexdef_Q2(texdef_to_face->face, &texdef_to_face->texdef,  bFit_to_Scale);\r
-    else\r
-      SetFaceTexdef(texdef_to_face->face, &texdef_to_face->texdef, NULL , bFit_to_Scale);\r
-    Brush_Build(texdef_to_face->brush); \r
-    if(bFit_to_Scale)\r
-      texdef_to_face->texdef = texdef_to_face->face->texdef;\r
-  }\r
-  \r
-  if ( b_SetUndoPoint )\r
-  {\r
-      if( (selected_brushes.next != &selected_brushes) || (g_ptrSelectedFaces.GetSize() == 1) )\r
-      {\r
-        if(selected_brushes.next != &selected_brushes)\r
-          Undo_EndBrushList(&selected_brushes); \r
-       else\r
-         Undo_EndBrush(texdef_face_list->brush);\r
-         \r
-        Undo_End();\r
-       // Over-write the orig_texdef list, cementing the change.\r
-       for(texdef_to_face = texdef_face_list; texdef_to_face; texdef_to_face = texdef_to_face->next)\r
-         texdef_to_face->orig_texdef = texdef_to_face->texdef;\r
-      }\r
-  }\r
-  \r
-  Sys_UpdateWindows (W_ALL);\r
-}\r
-\r
-void SI_FaceList_FitTexture(texdef_to_face_t* si_texdef_face_list, int nHeight, int nWidth)\r
-{\r
-  texdef_to_face_t* temp_texdef_face_list;\r
-\r
-  if (!si_texdef_face_list)\r
-    return;\r
-\r
-  for (temp_texdef_face_list = si_texdef_face_list; temp_texdef_face_list; temp_texdef_face_list = temp_texdef_face_list->next)\r
-  {\r
-    Face_FitTexture(temp_texdef_face_list->face, nHeight, nWidth);\r
-    Brush_Build(temp_texdef_face_list->brush,true,true,false,false); \r
-    // Write changes to our working Texdef list\r
-    temp_texdef_face_list->texdef = temp_texdef_face_list->face->texdef;\r
-  }\r
-\r
-  Sys_UpdateWindows (W_CAMERA);\r
-\r
-}\r
-\r
-GtkWindow* SI_GetMainWindow(void)\r
-{\r
-  return GTK_WINDOW(g_qeglobals_gui.d_main_window);\r
-}\r
-\r
-void SI_SetWinPos_from_Prefs(GtkWidget *win)\r
-{\r
-  load_window_pos (win, g_PrefsDlg.mWindowInfo.posSurfaceWnd);\r
-}\r
+/*
+Copyright (C) 1999-2007 id Software, Inc. and contributors.
+For a list of contributors, see the accompanying CONTRIBUTORS file.
+
+This file is part of GtkRadiant.
+
+GtkRadiant is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+GtkRadiant 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 GtkRadiant; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+*/
+
+//-----------------------------------------------------------------------------
+//
+// DESCRIPTION:
+// implementation of isurfaceplugin-interface specifics
+
+#include "stdafx.h"
+
+void QERApp_GetTwoSelectedPatch( patchMesh_t **p1, patchMesh_t **p2 )
+{
+  *p1 = NULL; *p2 = NULL;
+  for (brush_t *pb = selected_brushes.next ; pb != &selected_brushes ; pb = pb->next)
+  {
+    if (pb->patchBrush)
+    {
+      if (!(*p1))
+       *p1 = pb->pPatch;
+      else if (!(*p2))
+      {
+       *p2 = pb->pPatch;
+       return;
+      }
+    }
+  }
+#ifdef _DEBUG
+  Sys_Printf("WARNING: QERApp_GetTwoSelectedPatch failed (did not find two patches)\n");
+#endif
+  return;
+}
+
+// Nurail: The following functions are used by the Surface Inspector module
+
+// Queries the number of faces from selected brushes
+int SI_GetSelectedFaceCountfromBrushes(void)
+{
+  face_t       *f;
+  brush_t      *b;
+  int          num_of_faces = 0;
+
+  if(selected_brushes.next == &selected_brushes)
+    return(0);
+
+  for(b=selected_brushes.next; b!=&selected_brushes; b=b->next)
+    if (!(b->patchBrush))
+      for(f=b->brush_faces; f ; f=f->next, num_of_faces++);
+
+  return num_of_faces;
+}
+
+void SI_GetSelFacesTexdef(texdef_to_face_t *allocd_block_texdef)
+{
+  int          i;
+  face_t       *f;
+  brush_t      *b;
+  texdef_to_face_t *position, *prev_pos;
+
+  if(selected_brushes.next != &selected_brushes)
+  {
+    prev_pos = position = allocd_block_texdef;
+    for(b=selected_brushes.next; b!=&selected_brushes; b=b->next)
+    {
+      if ( !(b->patchBrush) )
+      {
+        for(f=b->brush_faces; f ; f = f->next)
+        {
+            position->face = f;
+            position->brush = b;
+            position->texdef = f->texdef;
+            position->orig_texdef = f->texdef;
+            prev_pos->next = position;
+            prev_pos = position;
+            position++;
+             }
+             prev_pos->next = NULL;
+      }
+    }
+  }
+  else if(g_ptrSelectedFaces.GetSize() != 0)
+  {
+    f = (face_t *) g_ptrSelectedFaces.GetAt(0);
+    b = (brush_t *) g_ptrSelectedFaceBrushes.GetAt(0);
+    position = (texdef_to_face_t*) allocd_block_texdef;
+    position->face = f;
+    position->brush = b;
+    position->texdef = f->texdef;
+    position->orig_texdef = f->texdef;
+    prev_pos = position;
+    for(i=1; i<g_ptrSelectedFaces.GetSize(); i++)
+    {
+      f = (face_t *) g_ptrSelectedFaces.GetAt(i);
+      b = (brush_t *) g_ptrSelectedFaceBrushes.GetAt(i);
+      position = allocd_block_texdef + i;
+      position->face = f;
+      position->brush = b;
+      position->texdef = f->texdef;
+      position->orig_texdef = f->texdef;
+      prev_pos->next = position;
+      prev_pos = position;
+    }
+    position->next = NULL;
+  }
+
+}
+
+/*
+SetFaceTexdef_Q2
+
+This doesn't mess with CONTENTS_DETAIL needed for Quake2 content flag
+
+*/
+void SetFaceTexdef_Q2 (face_t *f, texdef_t *texdef, bool bFitScale)
+{
+
+  if(strcmp(f->texdef.GetName(), texdef->GetName()) != 0) // set shader here instead of Brush_Build
+    Face_SetShader(f, texdef->GetName());
+
+               if (bFitScale)
+               {
+                       f->texdef = *texdef;
+                       // fit the scaling of the texture on the actual plane
+                       vec3_t p1,p2,p3; // absolute coordinates
+                       // compute absolute coordinates
+                       ComputeAbsolute(f,p1,p2,p3);
+                       // compute the scale
+                       vec3_t vx,vy;
+                       VectorSubtract(p2,p1,vx);
+                       VectorNormalize(vx, vx);
+                       VectorSubtract(p3,p1,vy);
+                       VectorNormalize(vy, vy);
+                       // assign scale
+                       VectorScale(vx,texdef->scale[0],vx);
+                       VectorScale(vy,texdef->scale[1],vy);
+                       VectorAdd(p1,vx,p2);
+                       VectorAdd(p1,vy,p3);
+                       // compute back shift scale rot
+                       AbsoluteToLocal(f->plane,f,p1,p2,p3);
+               }
+               else
+    {
+                       f->texdef = *texdef;
+    }
+  }
+
+
+
+void SI_SetTexdef_FaceList(texdef_to_face_t* texdef_face_list, bool b_SetUndoPoint, bool bFit_to_Scale)
+{
+  texdef_to_face_t* texdef_to_face;
+  bool b_isQuake2;
+
+  if ( ( g_pGameDescription->mGameFile == "q2.game" ) || ( g_pGameDescription->mGameFile == "heretic2.game" ) )
+    b_isQuake2 = true;
+  else
+    b_isQuake2 = false;
+
+  if (!texdef_face_list)
+    return;
+    
+ if (b_SetUndoPoint)
+ {
+    if(g_ptrSelectedFaces.GetSize() > 1)
+      Sys_FPrintf(SYS_WRN, "WARNING: Undo NOT supported for multiple face selections\n");
+    else if( (selected_brushes.next != &selected_brushes) || (g_ptrSelectedFaces.GetSize() == 1))
+    {
+      // Give something to undo to
+      for(texdef_to_face = texdef_face_list; texdef_to_face; texdef_to_face = texdef_to_face->next)
+      if (b_isQuake2)
+        SetFaceTexdef_Q2(texdef_to_face->face, &texdef_to_face->orig_texdef, bFit_to_Scale);
+      else
+        SetFaceTexdef(texdef_to_face->face, &texdef_to_face->orig_texdef, NULL);
+
+      Undo_Start("set facelist texdefs");
+      
+      if( selected_brushes.next != &selected_brushes )
+        Undo_AddBrushList(&selected_brushes); 
+      else
+        Undo_AddBrush(texdef_face_list->brush);
+      
+    }
+ }  
+    
+  for(texdef_to_face = texdef_face_list; texdef_to_face; texdef_to_face = texdef_to_face->next)
+  {
+    if (b_isQuake2)
+      SetFaceTexdef_Q2(texdef_to_face->face, &texdef_to_face->texdef,  bFit_to_Scale);
+    else
+      SetFaceTexdef(texdef_to_face->face, &texdef_to_face->texdef, NULL , bFit_to_Scale);
+    Brush_Build(texdef_to_face->brush); 
+    if(bFit_to_Scale)
+      texdef_to_face->texdef = texdef_to_face->face->texdef;
+  }
+  
+  if ( b_SetUndoPoint )
+  {
+      if( (selected_brushes.next != &selected_brushes) || (g_ptrSelectedFaces.GetSize() == 1) )
+      {
+        if(selected_brushes.next != &selected_brushes)
+          Undo_EndBrushList(&selected_brushes); 
+       else
+         Undo_EndBrush(texdef_face_list->brush);
+         
+        Undo_End();
+       // Over-write the orig_texdef list, cementing the change.
+       for(texdef_to_face = texdef_face_list; texdef_to_face; texdef_to_face = texdef_to_face->next)
+         texdef_to_face->orig_texdef = texdef_to_face->texdef;
+      }
+  }
+  
+  Sys_UpdateWindows (W_ALL);
+}
+
+void SI_FaceList_FitTexture(texdef_to_face_t* si_texdef_face_list, int nHeight, int nWidth)
+{
+  texdef_to_face_t* temp_texdef_face_list;
+
+  if (!si_texdef_face_list)
+    return;
+
+  for (temp_texdef_face_list = si_texdef_face_list; temp_texdef_face_list; temp_texdef_face_list = temp_texdef_face_list->next)
+  {
+    Face_FitTexture(temp_texdef_face_list->face, nHeight, nWidth);
+    Brush_Build(temp_texdef_face_list->brush,true,true,false,false); 
+    // Write changes to our working Texdef list
+    temp_texdef_face_list->texdef = temp_texdef_face_list->face->texdef;
+  }
+
+  Sys_UpdateWindows (W_CAMERA);
+
+}
+
+GtkWindow* SI_GetMainWindow(void)
+{
+  return GTK_WINDOW(g_qeglobals_gui.d_main_window);
+}
+
+void SI_SetWinPos_from_Prefs(GtkWidget *win)
+{
+  load_window_pos (win, g_PrefsDlg.mWindowInfo.posSurfaceWnd);
+}