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>());
94 void Brush_Construct(EBrushType type)
96 if(type == eBrushTypeQuake3)
98 g_showAlternativeTextureProjectionOption = true;
100 GlobalPreferenceSystem().registerPreference(
101 "AlternativeTextureProjection",
102 BoolImportStringCaller(g_useAlternativeTextureProjection.m_latched),
103 BoolExportStringCaller(g_useAlternativeTextureProjection.m_latched)
105 g_useAlternativeTextureProjection.useLatched();
107 if(g_useAlternativeTextureProjection.m_value)
109 type = eBrushTypeQuake3BP;
113 GlobalPreferenceSystem().registerPreference(
115 BoolImportStringCaller(g_brush_always_caulk),
116 BoolExportStringCaller(g_brush_always_caulk));
119 Brush_registerCommands();
120 Brush_registerPreferencesPage();
122 BrushFilters_construct();
124 BrushClipPlane::constructStatic();
125 BrushInstance::constructStatic();
126 Brush::constructStatic(type);
128 Brush::m_maxWorldCoord = g_MaxWorldCoord;
129 BrushInstance::m_counter = &g_brushCount;
131 g_texdef_default_scale = 0.5f;
132 const char* value = g_pGameDescription->getKeyValue("default_scale");
133 if(!string_empty(value))
135 float scale = static_cast<float>(atof(value));
138 g_texdef_default_scale = scale;
142 globalErrorStream() << "error parsing \"default_scale\" attribute\n";
146 GlobalPreferenceSystem().registerPreference("TextureLock", BoolImportStringCaller(g_brush_texturelock_enabled), BoolExportStringCaller(g_brush_texturelock_enabled));
147 GlobalPreferenceSystem().registerPreference("BrushSnapPlanes", makeBoolStringImportCallback(FaceImportSnapPlanesCaller()), makeBoolStringExportCallback(FaceExportSnapPlanesCaller()));
148 GlobalPreferenceSystem().registerPreference("TexdefDefaultScale", FloatImportStringCaller(g_texdef_default_scale), FloatExportStringCaller(g_texdef_default_scale));
150 GridStatus_getTextureLockEnabled = getTextureLockEnabled;
151 g_texture_lock_status_changed = FreeCaller<GridStatus_onTextureLockEnabledChanged>();
156 Brush::m_maxWorldCoord = 0;
157 BrushInstance::m_counter = 0;
159 Brush::destroyStatic();
160 BrushInstance::destroyStatic();
161 BrushClipPlane::destroyStatic();
164 void Brush_clipperColourChanged()
166 BrushClipPlane::destroyStatic();
167 BrushClipPlane::constructStatic();
170 void BrushFaceData_fromFace(const BrushFaceDataCallback& callback, Face& face)
172 _QERFaceData faceData;
173 faceData.m_p0 = face.getPlane().planePoints()[0];
174 faceData.m_p1 = face.getPlane().planePoints()[1];
175 faceData.m_p2 = face.getPlane().planePoints()[2];
176 faceData.m_shader = face.GetShader();
177 faceData.m_texdef = face.getTexdef().m_projection.m_texdef;
178 faceData.contents = face.getShader().m_flags.m_contentFlags;
179 faceData.flags = face.getShader().m_flags.m_surfaceFlags;
180 faceData.value = face.getShader().m_flags.m_value;
183 typedef ConstReferenceCaller1<BrushFaceDataCallback, Face&, BrushFaceData_fromFace> BrushFaceDataFromFaceCaller;
184 typedef Callback1<Face&> FaceCallback;
186 class Quake3BrushCreator : public BrushCreator
189 scene::Node& createBrush()
191 return (new BrushNode)->node();
193 bool useAlternativeTextureProjection() const
195 return g_useAlternativeTextureProjection.m_value;
197 void Brush_forEachFace(scene::Node& brush, const BrushFaceDataCallback& callback)
199 ::Brush_forEachFace(*Node_getBrush(brush), FaceCallback(BrushFaceDataFromFaceCaller(callback)));
201 bool Brush_addFace(scene::Node& brush, const _QERFaceData& faceData)
203 Node_getBrush(brush)->undoSave();
204 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;
208 Quake3BrushCreator g_Quake3BrushCreator;
210 BrushCreator& GetBrushCreator()
212 return g_Quake3BrushCreator;
215 #include "modulesystem/singletonmodule.h"
216 #include "modulesystem/moduleregistry.h"
219 class BrushDependencies :
220 public GlobalRadiantModuleRef,
221 public GlobalSceneGraphModuleRef,
222 public GlobalShaderCacheModuleRef,
223 public GlobalSelectionModuleRef,
224 public GlobalOpenGLModuleRef,
225 public GlobalUndoModuleRef,
226 public GlobalFilterModuleRef
230 class BrushDoom3API : public TypeSystemRef
232 BrushCreator* m_brushdoom3;
234 typedef BrushCreator Type;
235 STRING_CONSTANT(Name, "doom3");
239 Brush_Construct(eBrushTypeDoom3);
241 m_brushdoom3 = &GetBrushCreator();
247 BrushCreator* getTable()
253 typedef SingletonModule<BrushDoom3API, BrushDependencies> BrushDoom3Module;
254 typedef Static<BrushDoom3Module> StaticBrushDoom3Module;
255 StaticRegisterModule staticRegisterBrushDoom3(StaticBrushDoom3Module::instance());
258 class BrushQuake4API : public TypeSystemRef
260 BrushCreator* m_brushquake4;
262 typedef BrushCreator Type;
263 STRING_CONSTANT(Name, "quake4");
267 Brush_Construct(eBrushTypeQuake4);
269 m_brushquake4 = &GetBrushCreator();
275 BrushCreator* getTable()
277 return m_brushquake4;
281 typedef SingletonModule<BrushQuake4API, BrushDependencies> BrushQuake4Module;
282 typedef Static<BrushQuake4Module> StaticBrushQuake4Module;
283 StaticRegisterModule staticRegisterBrushQuake4(StaticBrushQuake4Module::instance());
286 class BrushQuake3API : public TypeSystemRef
288 BrushCreator* m_brushquake3;
290 typedef BrushCreator Type;
291 STRING_CONSTANT(Name, "quake3");
295 Brush_Construct(eBrushTypeQuake3);
297 m_brushquake3 = &GetBrushCreator();
303 BrushCreator* getTable()
305 return m_brushquake3;
309 typedef SingletonModule<BrushQuake3API, BrushDependencies> BrushQuake3Module;
310 typedef Static<BrushQuake3Module> StaticBrushQuake3Module;
311 StaticRegisterModule staticRegisterBrushQuake3(StaticBrushQuake3Module::instance());
314 class BrushQuake2API : public TypeSystemRef
316 BrushCreator* m_brushquake2;
318 typedef BrushCreator Type;
319 STRING_CONSTANT(Name, "quake2");
323 Brush_Construct(eBrushTypeQuake2);
325 m_brushquake2 = &GetBrushCreator();
331 BrushCreator* getTable()
333 return m_brushquake2;
337 typedef SingletonModule<BrushQuake2API, BrushDependencies> BrushQuake2Module;
338 typedef Static<BrushQuake2Module> StaticBrushQuake2Module;
339 StaticRegisterModule staticRegisterBrushQuake2(StaticBrushQuake2Module::instance());
342 class BrushQuake1API : public TypeSystemRef
344 BrushCreator* m_brushquake1;
346 typedef BrushCreator Type;
347 STRING_CONSTANT(Name, "quake");
351 Brush_Construct(eBrushTypeQuake);
353 m_brushquake1 = &GetBrushCreator();
359 BrushCreator* getTable()
361 return m_brushquake1;
365 typedef SingletonModule<BrushQuake1API, BrushDependencies> BrushQuake1Module;
366 typedef Static<BrushQuake1Module> StaticBrushQuake1Module;
367 StaticRegisterModule staticRegisterBrushQuake1(StaticBrushQuake1Module::instance());
370 class BrushHalfLifeAPI : public TypeSystemRef
372 BrushCreator* m_brushhalflife;
374 typedef BrushCreator Type;
375 STRING_CONSTANT(Name, "halflife");
379 Brush_Construct(eBrushTypeHalfLife);
381 m_brushhalflife = &GetBrushCreator();
387 BrushCreator* getTable()
389 return m_brushhalflife;
393 typedef SingletonModule<BrushHalfLifeAPI, BrushDependencies> BrushHalfLifeModule;
394 typedef Static<BrushHalfLifeModule> StaticBrushHalfLifeModule;
395 StaticRegisterModule staticRegisterBrushHalfLife(StaticBrushHalfLifeModule::instance());