2 Copyright (C) 2001-2006, William Joseph.
5 This file is part of GtkRadiant.
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "brushmodule.h"
24 #include "qerplugin.h"
26 #include "brushnode.h"
27 #include "brushmanip.h"
29 #include "preferencesystem.h"
34 #include "mainframe.h"
35 #include "preferences.h"
37 LatchedBool g_useAlternativeTextureProjection(false, "Use alternative texture-projection");
38 bool g_showAlternativeTextureProjectionOption = false;
39 bool g_brush_always_caulk;
41 bool getTextureLockEnabled()
43 return g_brush_texturelock_enabled;
46 void Face_importSnapPlanes(bool value)
48 Face::m_quantise = value ? quantiseInteger : quantiseFloating;
50 typedef FreeCaller1<bool, Face_importSnapPlanes> FaceImportSnapPlanesCaller;
52 void Face_exportSnapPlanes(const BoolImportCallback& importer)
54 importer(Face::m_quantise == quantiseInteger);
56 typedef FreeCaller1<const BoolImportCallback&, Face_exportSnapPlanes> FaceExportSnapPlanesCaller;
58 void Brush_constructPreferences(PreferencesPage& page)
61 "", "Snap planes to integer grid",
62 FaceImportSnapPlanesCaller(),
63 FaceExportSnapPlanesCaller()
66 "Default texture scale",
67 g_texdef_default_scale
69 if(g_showAlternativeTextureProjectionOption)
72 "", "Use alternative texture-projection",
73 LatchedBoolImportCaller(g_useAlternativeTextureProjection),
74 BoolExportCaller(g_useAlternativeTextureProjection.m_latched)
78 page.appendCheckBox("",
79 "Always use caulk for new brushes",
83 void Brush_constructPage(PreferenceGroup& group)
85 PreferencesPage page(group.createPage("Brush", "Brush Settings"));
86 Brush_constructPreferences(page);
88 void Brush_registerPreferencesPage()
90 PreferencesDialog_addSettingsPage(FreeCaller1<PreferenceGroup&, Brush_constructPage>());
93 void Brush_unlatchPreferences()
95 Brush_toggleFormat(0);
98 void Brush_toggleFormat(int i)
100 if(g_showAlternativeTextureProjectionOption)
102 g_useAlternativeTextureProjection.m_value = g_useAlternativeTextureProjection.m_latched ^ i;
103 Brush::destroyStatic();
104 Brush::constructStatic(g_useAlternativeTextureProjection.m_value ? eBrushTypeQuake3BP : eBrushTypeQuake3);
108 int Brush_toggleFormatCount()
110 if(g_showAlternativeTextureProjectionOption)
115 void Brush_Construct(EBrushType type)
117 if(type == eBrushTypeQuake3)
119 g_showAlternativeTextureProjectionOption = true;
121 GlobalPreferenceSystem().registerPreference(
122 "AlternativeTextureProjection",
123 BoolImportStringCaller(g_useAlternativeTextureProjection.m_latched),
124 BoolExportStringCaller(g_useAlternativeTextureProjection.m_latched)
126 g_useAlternativeTextureProjection.useLatched();
128 if(g_useAlternativeTextureProjection.m_value)
130 type = eBrushTypeQuake3BP;
134 GlobalPreferenceSystem().registerPreference(
136 BoolImportStringCaller(g_brush_always_caulk),
137 BoolExportStringCaller(g_brush_always_caulk));
140 Brush_registerCommands();
141 Brush_registerPreferencesPage();
143 BrushFilters_construct();
145 BrushClipPlane::constructStatic();
146 BrushInstance::constructStatic();
147 Brush::constructStatic(type);
149 Brush::m_maxWorldCoord = g_MaxWorldCoord;
150 BrushInstance::m_counter = &g_brushCount;
152 g_texdef_default_scale = 0.5f;
153 const char* value = g_pGameDescription->getKeyValue("default_scale");
154 if(!string_empty(value))
156 float scale = static_cast<float>(atof(value));
159 g_texdef_default_scale = scale;
163 globalErrorStream() << "error parsing \"default_scale\" attribute\n";
167 GlobalPreferenceSystem().registerPreference("TextureLock", BoolImportStringCaller(g_brush_texturelock_enabled), BoolExportStringCaller(g_brush_texturelock_enabled));
168 GlobalPreferenceSystem().registerPreference("BrushSnapPlanes", makeBoolStringImportCallback(FaceImportSnapPlanesCaller()), makeBoolStringExportCallback(FaceExportSnapPlanesCaller()));
169 GlobalPreferenceSystem().registerPreference("TexdefDefaultScale", FloatImportStringCaller(g_texdef_default_scale), FloatExportStringCaller(g_texdef_default_scale));
171 GridStatus_getTextureLockEnabled = getTextureLockEnabled;
172 g_texture_lock_status_changed = FreeCaller<GridStatus_onTextureLockEnabledChanged>();
177 Brush::m_maxWorldCoord = 0;
178 BrushInstance::m_counter = 0;
180 Brush::destroyStatic();
181 BrushInstance::destroyStatic();
182 BrushClipPlane::destroyStatic();
185 void Brush_clipperColourChanged()
187 BrushClipPlane::destroyStatic();
188 BrushClipPlane::constructStatic();
191 void BrushFaceData_fromFace(const BrushFaceDataCallback& callback, Face& face)
193 _QERFaceData faceData;
194 faceData.m_p0 = face.getPlane().planePoints()[0];
195 faceData.m_p1 = face.getPlane().planePoints()[1];
196 faceData.m_p2 = face.getPlane().planePoints()[2];
197 faceData.m_shader = face.GetShader();
198 faceData.m_texdef = face.getTexdef().m_projection.m_texdef;
199 faceData.contents = face.getShader().m_flags.m_contentFlags;
200 faceData.flags = face.getShader().m_flags.m_surfaceFlags;
201 faceData.value = face.getShader().m_flags.m_value;
204 typedef ConstReferenceCaller1<BrushFaceDataCallback, Face&, BrushFaceData_fromFace> BrushFaceDataFromFaceCaller;
205 typedef Callback1<Face&> FaceCallback;
207 class Quake3BrushCreator : public BrushCreator
210 scene::Node& createBrush()
212 return (new BrushNode)->node();
214 bool useAlternativeTextureProjection() const
216 return g_useAlternativeTextureProjection.m_value;
218 void Brush_forEachFace(scene::Node& brush, const BrushFaceDataCallback& callback)
220 ::Brush_forEachFace(*Node_getBrush(brush), FaceCallback(BrushFaceDataFromFaceCaller(callback)));
222 bool Brush_addFace(scene::Node& brush, const _QERFaceData& faceData)
224 Node_getBrush(brush)->undoSave();
225 return Node_getBrush(brush)->addPlane(faceData.m_p0, faceData.m_p1, faceData.m_p2, faceData.m_shader, TextureProjection(faceData.m_texdef, brushprimit_texdef_t(), Vector3(0, 0, 0), Vector3(0, 0, 0))) != 0;
229 Quake3BrushCreator g_Quake3BrushCreator;
231 BrushCreator& GetBrushCreator()
233 return g_Quake3BrushCreator;
236 #include "modulesystem/singletonmodule.h"
237 #include "modulesystem/moduleregistry.h"
240 class BrushDependencies :
241 public GlobalRadiantModuleRef,
242 public GlobalSceneGraphModuleRef,
243 public GlobalShaderCacheModuleRef,
244 public GlobalSelectionModuleRef,
245 public GlobalOpenGLModuleRef,
246 public GlobalUndoModuleRef,
247 public GlobalFilterModuleRef
251 class BrushDoom3API : public TypeSystemRef
253 BrushCreator* m_brushdoom3;
255 typedef BrushCreator Type;
256 STRING_CONSTANT(Name, "doom3");
260 Brush_Construct(eBrushTypeDoom3);
262 m_brushdoom3 = &GetBrushCreator();
268 BrushCreator* getTable()
274 typedef SingletonModule<BrushDoom3API, BrushDependencies> BrushDoom3Module;
275 typedef Static<BrushDoom3Module> StaticBrushDoom3Module;
276 StaticRegisterModule staticRegisterBrushDoom3(StaticBrushDoom3Module::instance());
279 class BrushQuake4API : public TypeSystemRef
281 BrushCreator* m_brushquake4;
283 typedef BrushCreator Type;
284 STRING_CONSTANT(Name, "quake4");
288 Brush_Construct(eBrushTypeQuake4);
290 m_brushquake4 = &GetBrushCreator();
296 BrushCreator* getTable()
298 return m_brushquake4;
302 typedef SingletonModule<BrushQuake4API, BrushDependencies> BrushQuake4Module;
303 typedef Static<BrushQuake4Module> StaticBrushQuake4Module;
304 StaticRegisterModule staticRegisterBrushQuake4(StaticBrushQuake4Module::instance());
307 class BrushQuake3API : public TypeSystemRef
309 BrushCreator* m_brushquake3;
311 typedef BrushCreator Type;
312 STRING_CONSTANT(Name, "quake3");
316 Brush_Construct(eBrushTypeQuake3);
318 m_brushquake3 = &GetBrushCreator();
324 BrushCreator* getTable()
326 return m_brushquake3;
330 typedef SingletonModule<BrushQuake3API, BrushDependencies> BrushQuake3Module;
331 typedef Static<BrushQuake3Module> StaticBrushQuake3Module;
332 StaticRegisterModule staticRegisterBrushQuake3(StaticBrushQuake3Module::instance());
335 class BrushQuake2API : public TypeSystemRef
337 BrushCreator* m_brushquake2;
339 typedef BrushCreator Type;
340 STRING_CONSTANT(Name, "quake2");
344 Brush_Construct(eBrushTypeQuake2);
346 m_brushquake2 = &GetBrushCreator();
352 BrushCreator* getTable()
354 return m_brushquake2;
358 typedef SingletonModule<BrushQuake2API, BrushDependencies> BrushQuake2Module;
359 typedef Static<BrushQuake2Module> StaticBrushQuake2Module;
360 StaticRegisterModule staticRegisterBrushQuake2(StaticBrushQuake2Module::instance());
363 class BrushQuake1API : public TypeSystemRef
365 BrushCreator* m_brushquake1;
367 typedef BrushCreator Type;
368 STRING_CONSTANT(Name, "quake");
372 Brush_Construct(eBrushTypeQuake);
374 m_brushquake1 = &GetBrushCreator();
380 BrushCreator* getTable()
382 return m_brushquake1;
386 typedef SingletonModule<BrushQuake1API, BrushDependencies> BrushQuake1Module;
387 typedef Static<BrushQuake1Module> StaticBrushQuake1Module;
388 StaticRegisterModule staticRegisterBrushQuake1(StaticBrushQuake1Module::instance());
391 class BrushHalfLifeAPI : public TypeSystemRef
393 BrushCreator* m_brushhalflife;
395 typedef BrushCreator Type;
396 STRING_CONSTANT(Name, "halflife");
400 Brush_Construct(eBrushTypeHalfLife);
402 m_brushhalflife = &GetBrushCreator();
408 BrushCreator* getTable()
410 return m_brushhalflife;
414 typedef SingletonModule<BrushHalfLifeAPI, BrushDependencies> BrushHalfLifeModule;
415 typedef Static<BrushHalfLifeModule> StaticBrushHalfLifeModule;
416 StaticRegisterModule staticRegisterBrushHalfLife(StaticBrushHalfLifeModule::instance());