]> git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/patchmanip.cpp
Radiant:
[xonotic/netradiant.git] / radiant / patchmanip.cpp
1 /*
2    Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3    For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5    This file is part of GtkRadiant.
6
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.
11
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.
16
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
20  */
21
22 #include "patchmanip.h"
23
24 #include "debugging/debugging.h"
25
26
27 #include "iselection.h"
28 #include "ipatch.h"
29
30 #include "math/vector.h"
31 #include "math/aabb.h"
32 #include "generic/callback.h"
33
34 #include "gtkutil/menu.h"
35 #include "gtkutil/image.h"
36 #include "map.h"
37 #include "mainframe.h"
38 #include "commands.h"
39 #include "gtkmisc.h"
40 #include "gtkdlgs.h"
41 #include "texwindow.h"
42 #include "xywindow.h"
43 #include "select.h"
44 #include "patch.h"
45 #include "grid.h"
46
47 PatchCreator* g_patchCreator = 0;
48
49 void Scene_PatchConstructPrefab( scene::Graph& graph, const AABB aabb, const char* shader, EPatchPrefab eType, int axis, std::size_t width = 3, std::size_t height = 3 ){
50         Select_Delete();
51         GlobalSelectionSystem().setSelectedAll( false );
52
53         NodeSmartReference node( g_patchCreator->createPatch() );
54         Node_getTraversable( Map_FindOrInsertWorldspawn( g_map ) )->insert( node );
55
56         Patch* patch = Node_getPatch( node );
57         patch->SetShader( shader );
58
59         patch->ConstructPrefab( aabb, eType, axis, width, height );
60         patch->controlPointsChanged();
61
62         {
63                 scene::Path patchpath( makeReference( GlobalSceneGraph().root() ) );
64                 patchpath.push( makeReference( *Map_GetWorldspawn( g_map ) ) );
65                 patchpath.push( makeReference( node.get() ) );
66                 Instance_getSelectable( *graph.find( patchpath ) )->setSelected( true );
67         }
68 }
69
70
71 void Patch_makeCaps( Patch& patch, scene::Instance& instance, EPatchCap type, const char* shader ){
72         if ( ( type == eCapEndCap || type == eCapIEndCap )
73                  && patch.getWidth() != 5 ) {
74                 globalErrorStream() << "cannot create end-cap - patch width != 5\n";
75                 return;
76         }
77         if ( ( type == eCapBevel || type == eCapIBevel )
78                  && patch.getWidth() != 3 && patch.getWidth() != 5 ) {
79                 globalErrorStream() << "cannot create bevel-cap - patch width != 3\n";
80                 return;
81         }
82         if ( type == eCapCylinder
83                  && patch.getWidth() != 9 ) {
84                 globalErrorStream() << "cannot create cylinder-cap - patch width != 9\n";
85                 return;
86         }
87
88         {
89                 NodeSmartReference cap( g_patchCreator->createPatch() );
90                 Node_getTraversable( instance.path().parent() )->insert( cap );
91
92                 patch.MakeCap( Node_getPatch( cap ), type, ROW, true );
93                 Node_getPatch( cap )->SetShader( shader );
94
95                 scene::Path path( instance.path() );
96                 path.pop();
97                 path.push( makeReference( cap.get() ) );
98                 selectPath( path, true );
99         }
100
101         {
102                 NodeSmartReference cap( g_patchCreator->createPatch() );
103                 Node_getTraversable( instance.path().parent() )->insert( cap );
104
105                 patch.MakeCap( Node_getPatch( cap ), type, ROW, false );
106                 Node_getPatch( cap )->SetShader( shader );
107
108                 scene::Path path( instance.path() );
109                 path.pop();
110                 path.push( makeReference( cap.get() ) );
111                 selectPath( path, true );
112         }
113 }
114
115
116 typedef std::vector<scene::Instance*> InstanceVector;
117
118 class PatchStoreInstance
119 {
120 InstanceVector& m_instances;
121 public:
122 PatchStoreInstance( InstanceVector& instances ) : m_instances( instances ){
123 }
124 void operator()( PatchInstance& patch ) const {
125         m_instances.push_back( &patch );
126 }
127 };
128
129 enum ECapDialog {
130         PATCHCAP_BEVEL = 0,
131         PATCHCAP_ENDCAP,
132         PATCHCAP_INVERTED_BEVEL,
133         PATCHCAP_INVERTED_ENDCAP,
134         PATCHCAP_CYLINDER
135 };
136
137 EMessageBoxReturn DoCapDlg( ECapDialog *type );
138
139 void Scene_PatchDoCap_Selected( scene::Graph& graph, const char* shader ){
140         ECapDialog nType;
141
142         if ( DoCapDlg( &nType ) == eIDOK ) {
143                 EPatchCap eType;
144                 switch ( nType )
145                 {
146                 case PATCHCAP_INVERTED_BEVEL:
147                         eType = eCapIBevel;
148                         break;
149                 case PATCHCAP_BEVEL:
150                         eType = eCapBevel;
151                         break;
152                 case PATCHCAP_INVERTED_ENDCAP:
153                         eType = eCapIEndCap;
154                         break;
155                 case PATCHCAP_ENDCAP:
156                         eType = eCapEndCap;
157                         break;
158                 case PATCHCAP_CYLINDER:
159                         eType = eCapCylinder;
160                         break;
161                 default:
162                         ERROR_MESSAGE( "invalid patch cap type" );
163                         return;
164                 }
165
166                 InstanceVector instances;
167                 Scene_forEachVisibleSelectedPatchInstance( PatchStoreInstance( instances ) );
168                 for ( InstanceVector::const_iterator i = instances.begin(); i != instances.end(); ++i )
169                 {
170                         Patch_makeCaps( *Node_getPatch( ( *i )->path().top() ), *( *i ), eType, shader );
171                 }
172         }
173 }
174
175 void Patch_deform( Patch& patch, scene::Instance& instance, const int deform ){
176         patch.undoSave();
177
178         for (PatchControlIter i = patch.begin(); i != patch.end(); ++i)
179         {
180                 PatchControl& control = *i;
181                 int randomNumber = int( deform * (float(std::rand()) / float(RAND_MAX)));
182                 control.m_vertex[2] += randomNumber;
183         }
184
185         patch.controlPointsChanged();
186 }
187
188 void Scene_PatchDeform( scene::Graph& graph, const int deform )
189 {
190         InstanceVector instances;
191         Scene_forEachVisibleSelectedPatchInstance( PatchStoreInstance( instances ) );
192         for ( InstanceVector::const_iterator i = instances.begin(); i != instances.end(); ++i )
193         {
194                 Patch_deform( *Node_getPatch( ( *i )->path().top() ), *( *i ), deform );
195         }
196
197 }
198
199 void Patch_thicken( Patch& patch, scene::Instance& instance, const float thickness, bool seams, const int axis ){
200
201                 // Create a new patch node
202                 NodeSmartReference node(g_patchCreator->createPatch());
203                 // Insert the node into worldspawn
204                 Node_getTraversable(Map_FindOrInsertWorldspawn(g_map))->insert(node);
205
206                 // Retrieve the contained patch from the node
207                 Patch* targetPatch = Node_getPatch(node);
208
209                 // Create the opposite patch with the given thickness = distance
210                 bool no12 = true;
211                 bool no34 = true;
212                 targetPatch->createThickenedOpposite(patch, thickness, axis, no12, no34);
213
214                 // Now select the newly created patches
215                 {
216                         scene::Path patchpath(makeReference(GlobalSceneGraph().root()));
217                         patchpath.push(makeReference(*Map_GetWorldspawn(g_map)));
218                         patchpath.push(makeReference(node.get()));
219                         Instance_getSelectable(*GlobalSceneGraph().find(patchpath))->setSelected(true);
220                 }
221
222                 if (seams && thickness != 0.0f) {
223                         int i = 0;
224                         if ( no12 ){
225                                 i = 2;
226                         }
227                         int iend = 4;
228                         if ( no34 ){
229                                 iend = 2;
230                         }
231                         // Now create the four walls
232                         for ( ; i < iend; i++ ) {
233                                 // Allocate new patch
234                                 NodeSmartReference node = NodeSmartReference(g_patchCreator->createPatch());
235                                 // Insert each node into worldspawn
236                                 Node_getTraversable(Map_FindOrInsertWorldspawn(g_map))->insert(node);
237
238                                 // Retrieve the contained patch from the node
239                                 Patch* wallPatch = Node_getPatch(node);
240
241                                 // Create the wall patch by passing i as wallIndex
242                                 wallPatch->createThickenedWall( patch, *targetPatch, i);
243
244                                 if( ( wallPatch->localAABB().extents[0] <= 0.00005 && wallPatch->localAABB().extents[1] <= 0.00005 ) ||
245                                         ( wallPatch->localAABB().extents[1] <= 0.00005 && wallPatch->localAABB().extents[2] <= 0.00005 ) ||
246                                         ( wallPatch->localAABB().extents[0] <= 0.00005 && wallPatch->localAABB().extents[2] <= 0.00005 ) ){
247                                         //globalOutputStream() << "Thicken: Discarding degenerate patch.\n";
248                                         Node_getTraversable( Map_FindOrInsertWorldspawn(g_map) )->erase( node );
249                                 }
250                                 else
251                                 // Now select the newly created patches
252                                 {
253                                         scene::Path patchpath(makeReference(GlobalSceneGraph().root()));
254                                         patchpath.push(makeReference(*Map_GetWorldspawn(g_map)));
255                                         patchpath.push(makeReference(node.get()));
256                                         Instance_getSelectable(*GlobalSceneGraph().find(patchpath))->setSelected(true);
257                                 }
258                         }
259                 }
260
261                 // Invert the target patch so that it faces the opposite direction
262                 targetPatch->InvertMatrix();
263 }
264
265 void Scene_PatchThicken( scene::Graph& graph, const int thickness, bool seams, const int axis )
266 {
267         InstanceVector instances;
268         Scene_forEachVisibleSelectedPatchInstance( PatchStoreInstance( instances ) );
269         for ( InstanceVector::const_iterator i = instances.begin(); i != instances.end(); ++i )
270         {
271                 Patch_thicken( *Node_getPatch( ( *i )->path().top() ), *( *i ), thickness, seams, axis );
272         }
273
274 }
275
276 Patch* Scene_GetUltimateSelectedVisiblePatch(){
277         if ( GlobalSelectionSystem().countSelected() != 0 ) {
278                 scene::Node& node = GlobalSelectionSystem().ultimateSelected().path().top();
279                 if ( node.visible() ) {
280                         return Node_getPatch( node );
281                 }
282         }
283         return 0;
284 }
285
286
287 class PatchCapTexture
288 {
289 public:
290 void operator()( Patch& patch ) const {
291         patch.ProjectTexture( Patch::m_CycleCapIndex );
292 }
293 };
294
295 void Scene_PatchCapTexture_Selected( scene::Graph& graph ){
296         Scene_forEachVisibleSelectedPatch( PatchCapTexture() );
297         Patch::m_CycleCapIndex = ( Patch::m_CycleCapIndex == 0 ) ? 1 : ( Patch::m_CycleCapIndex == 1 ) ? 2 : 0;
298         SceneChangeNotify();
299 }
300
301 class PatchFlipTexture
302 {
303 int m_axis;
304 public:
305 PatchFlipTexture( int axis ) : m_axis( axis ){
306 }
307 void operator()( Patch& patch ) const {
308         patch.FlipTexture( m_axis );
309 }
310 };
311
312 void Scene_PatchFlipTexture_Selected( scene::Graph& graph, int axis ){
313         Scene_forEachVisibleSelectedPatch( PatchFlipTexture( axis ) );
314 }
315
316 class PatchNaturalTexture
317 {
318 public:
319 void operator()( Patch& patch ) const {
320         patch.NaturalTexture();
321 }
322 };
323
324 void Scene_PatchNaturalTexture_Selected( scene::Graph& graph ){
325         Scene_forEachVisibleSelectedPatch( PatchNaturalTexture() );
326         SceneChangeNotify();
327 }
328
329
330 class PatchInsertRemove
331 {
332 bool m_insert, m_column, m_first;
333 public:
334 PatchInsertRemove( bool insert, bool column, bool first ) : m_insert( insert ), m_column( column ), m_first( first ){
335 }
336 void operator()( Patch& patch ) const {
337         patch.InsertRemove( m_insert, m_column, m_first );
338 }
339 };
340
341 void Scene_PatchInsertRemove_Selected( scene::Graph& graph, bool bInsert, bool bColumn, bool bFirst ){
342         Scene_forEachVisibleSelectedPatch( PatchInsertRemove( bInsert, bColumn, bFirst ) );
343 }
344
345 class PatchInvertMatrix
346 {
347 public:
348 void operator()( Patch& patch ) const {
349         patch.InvertMatrix();
350 }
351 };
352
353 void Scene_PatchInvert_Selected( scene::Graph& graph ){
354         Scene_forEachVisibleSelectedPatch( PatchInvertMatrix() );
355 }
356
357 class PatchRedisperse
358 {
359 EMatrixMajor m_major;
360 public:
361 PatchRedisperse( EMatrixMajor major ) : m_major( major ){
362 }
363 void operator()( Patch& patch ) const {
364         patch.Redisperse( m_major );
365 }
366 };
367
368 void Scene_PatchRedisperse_Selected( scene::Graph& graph, EMatrixMajor major ){
369         Scene_forEachVisibleSelectedPatch( PatchRedisperse( major ) );
370 }
371
372 class PatchSmooth
373 {
374 EMatrixMajor m_major;
375 public:
376 PatchSmooth( EMatrixMajor major ) : m_major( major ){
377 }
378 void operator()( Patch& patch ) const {
379         patch.Smooth( m_major );
380 }
381 };
382
383 void Scene_PatchSmooth_Selected( scene::Graph& graph, EMatrixMajor major ){
384         Scene_forEachVisibleSelectedPatch( PatchSmooth( major ) );
385 }
386
387 class PatchTransposeMatrix
388 {
389 public:
390 void operator()( Patch& patch ) const {
391         patch.TransposeMatrix();
392 }
393 };
394
395 void Scene_PatchTranspose_Selected( scene::Graph& graph ){
396         Scene_forEachVisibleSelectedPatch( PatchTransposeMatrix() );
397 }
398
399 class PatchSetShader
400 {
401 const char* m_name;
402 public:
403 PatchSetShader( const char* name )
404         : m_name( name ){
405 }
406 void operator()( Patch& patch ) const {
407         patch.SetShader( m_name );
408 }
409 };
410
411 void Scene_PatchSetShader_Selected( scene::Graph& graph, const char* name ){
412         Scene_forEachVisibleSelectedPatch( PatchSetShader( name ) );
413         SceneChangeNotify();
414 }
415
416 void Scene_PatchGetShader_Selected( scene::Graph& graph, CopiedString& name ){
417         Patch* patch = Scene_GetUltimateSelectedVisiblePatch();
418         if ( patch != 0 ) {
419                 name = patch->GetShader();
420         }
421 }
422
423 class PatchSelectByShader
424 {
425 const char* m_name;
426 public:
427 inline PatchSelectByShader( const char* name )
428         : m_name( name ){
429 }
430 void operator()( PatchInstance& patch ) const {
431         if ( shader_equal( patch.getPatch().GetShader(), m_name ) ) {
432                 patch.setSelected( true );
433         }
434 }
435 };
436
437 void Scene_PatchSelectByShader( scene::Graph& graph, const char* name ){
438         Scene_forEachVisiblePatchInstance( PatchSelectByShader( name ) );
439 }
440
441
442 class PatchFindReplaceShader
443 {
444 const char* m_find;
445 const char* m_replace;
446 public:
447 PatchFindReplaceShader( const char* find, const char* replace ) : m_find( find ), m_replace( replace ){
448 }
449 void operator()( Patch& patch ) const {
450         if ( shader_equal( patch.GetShader(), m_find ) ) {
451                 patch.SetShader( m_replace );
452         }
453 }
454 };
455
456 void Scene_PatchFindReplaceShader( scene::Graph& graph, const char* find, const char* replace ){
457         Scene_forEachVisiblePatch( PatchFindReplaceShader( find, replace ) );
458 }
459
460 void Scene_PatchFindReplaceShader_Selected( scene::Graph& graph, const char* find, const char* replace ){
461         Scene_forEachVisibleSelectedPatch( PatchFindReplaceShader( find, replace ) );
462 }
463
464
465 AABB PatchCreator_getBounds(){
466         AABB aabb( aabb_for_minmax( Select_getWorkZone().d_work_min, Select_getWorkZone().d_work_max ) );
467
468         float gridSize = GetGridSize();
469
470         if ( aabb.extents[0] == 0 ) {
471                 aabb.extents[0] = gridSize;
472         }
473         if ( aabb.extents[1] == 0 ) {
474                 aabb.extents[1] = gridSize;
475         }
476         if ( aabb.extents[2] == 0 ) {
477                 aabb.extents[2] = gridSize;
478         }
479
480         if ( aabb_valid( aabb ) ) {
481                 return aabb;
482         }
483         return AABB( Vector3( 0, 0, 0 ), Vector3( 64, 64, 64 ) );
484 }
485
486 void DoNewPatchDlg( EPatchPrefab prefab, int minrows, int mincols, int defrows, int defcols, int maxrows, int maxcols );
487
488 void Patch_XactCylinder(){
489         UndoableCommand undo( "patchCreateXactCylinder" );
490
491         DoNewPatchDlg( eXactCylinder, 3, 7, 3, 13, 0, 0 );
492 }
493
494 void Patch_XactSphere(){
495         UndoableCommand undo( "patchCreateXactSphere" );
496
497         DoNewPatchDlg( eXactSphere, 5, 7, 7, 13, 0, 0 );
498 }
499
500 void Patch_XactCone(){
501         UndoableCommand undo( "patchCreateXactCone" );
502
503         DoNewPatchDlg( eXactCone, 3, 7, 3, 13, 0, 0 );
504 }
505
506 void Patch_Cylinder(){
507         UndoableCommand undo( "patchCreateCylinder" );
508
509         Scene_PatchConstructPrefab( GlobalSceneGraph(), PatchCreator_getBounds(), TextureBrowser_GetSelectedShader( GlobalTextureBrowser() ), eCylinder, GlobalXYWnd_getCurrentViewType() );
510 }
511
512 void Patch_DenseCylinder(){
513         UndoableCommand undo( "patchCreateDenseCylinder" );
514
515         Scene_PatchConstructPrefab( GlobalSceneGraph(), PatchCreator_getBounds(), TextureBrowser_GetSelectedShader( GlobalTextureBrowser() ), eDenseCylinder, GlobalXYWnd_getCurrentViewType() );
516 }
517
518 void Patch_VeryDenseCylinder(){
519         UndoableCommand undo( "patchCreateVeryDenseCylinder" );
520
521         Scene_PatchConstructPrefab( GlobalSceneGraph(), PatchCreator_getBounds(), TextureBrowser_GetSelectedShader( GlobalTextureBrowser() ), eVeryDenseCylinder, GlobalXYWnd_getCurrentViewType() );
522 }
523
524 void Patch_SquareCylinder(){
525         UndoableCommand undo( "patchCreateSquareCylinder" );
526
527         Scene_PatchConstructPrefab( GlobalSceneGraph(), PatchCreator_getBounds(), TextureBrowser_GetSelectedShader( GlobalTextureBrowser() ), eSqCylinder, GlobalXYWnd_getCurrentViewType() );
528 }
529
530 void Patch_Endcap(){
531         UndoableCommand undo( "patchCreateCaps" );
532
533         Scene_PatchConstructPrefab( GlobalSceneGraph(), PatchCreator_getBounds(), TextureBrowser_GetSelectedShader( GlobalTextureBrowser() ), eEndCap, GlobalXYWnd_getCurrentViewType() );
534 }
535
536 void Patch_Bevel(){
537         UndoableCommand undo( "patchCreateBevel" );
538
539         Scene_PatchConstructPrefab( GlobalSceneGraph(), PatchCreator_getBounds(), TextureBrowser_GetSelectedShader( GlobalTextureBrowser() ), eBevel, GlobalXYWnd_getCurrentViewType() );
540 }
541
542 void Patch_Sphere(){
543         UndoableCommand undo( "patchCreateSphere" );
544
545         Scene_PatchConstructPrefab( GlobalSceneGraph(), PatchCreator_getBounds(), TextureBrowser_GetSelectedShader( GlobalTextureBrowser() ), eSphere, GlobalXYWnd_getCurrentViewType() );
546 }
547
548 void Patch_SquareBevel(){
549 }
550
551 void Patch_SquareEndcap(){
552 }
553
554 void Patch_Cone(){
555         UndoableCommand undo( "patchCreateCone" );
556
557         Scene_PatchConstructPrefab( GlobalSceneGraph(), PatchCreator_getBounds(), TextureBrowser_GetSelectedShader( GlobalTextureBrowser() ), eCone, GlobalXYWnd_getCurrentViewType() );
558 }
559
560 void Patch_Plane(){
561         UndoableCommand undo( "patchCreatePlane" );
562
563         DoNewPatchDlg( ePlane, 3, 3, 3, 3, 0, 0 );
564 }
565
566 void Patch_InsertInsertColumn(){
567         UndoableCommand undo( "patchInsertColumns" );
568
569         Scene_PatchInsertRemove_Selected( GlobalSceneGraph(), true, true, false );
570 }
571
572 void Patch_InsertAddColumn(){
573         UndoableCommand undo( "patchAddColumns" );
574
575         Scene_PatchInsertRemove_Selected( GlobalSceneGraph(), true, true, true );
576 }
577
578 void Patch_InsertInsertRow(){
579         UndoableCommand undo( "patchInsertRows" );
580
581         Scene_PatchInsertRemove_Selected( GlobalSceneGraph(), true, false, false );
582 }
583
584 void Patch_InsertAddRow(){
585         UndoableCommand undo( "patchAddRows" );
586
587         Scene_PatchInsertRemove_Selected( GlobalSceneGraph(), true, false, true );
588 }
589
590 void Patch_DeleteFirstColumn(){
591         UndoableCommand undo( "patchDeleteFirstColumns" );
592
593         Scene_PatchInsertRemove_Selected( GlobalSceneGraph(), false, true, true );
594 }
595
596 void Patch_DeleteLastColumn(){
597         UndoableCommand undo( "patchDeleteLastColumns" );
598
599         Scene_PatchInsertRemove_Selected( GlobalSceneGraph(), false, true, false );
600 }
601
602 void Patch_DeleteFirstRow(){
603         UndoableCommand undo( "patchDeleteFirstRows" );
604
605         Scene_PatchInsertRemove_Selected( GlobalSceneGraph(), false, false, true );
606 }
607
608 void Patch_DeleteLastRow(){
609         UndoableCommand undo( "patchDeleteLastRows" );
610
611         Scene_PatchInsertRemove_Selected( GlobalSceneGraph(), false, false, false );
612 }
613
614 void Patch_Invert(){
615         UndoableCommand undo( "patchInvert" );
616
617         Scene_PatchInvert_Selected( GlobalSceneGraph() );
618 }
619
620 void Patch_RedisperseRows(){
621         UndoableCommand undo( "patchRedisperseRows" );
622
623         Scene_PatchRedisperse_Selected( GlobalSceneGraph(), ROW );
624 }
625
626 void Patch_RedisperseCols(){
627         UndoableCommand undo( "patchRedisperseColumns" );
628
629         Scene_PatchRedisperse_Selected( GlobalSceneGraph(), COL );
630 }
631
632 void Patch_SmoothRows(){
633         UndoableCommand undo( "patchSmoothRows" );
634
635         Scene_PatchSmooth_Selected( GlobalSceneGraph(), ROW );
636 }
637
638 void Patch_SmoothCols(){
639         UndoableCommand undo( "patchSmoothColumns" );
640
641         Scene_PatchSmooth_Selected( GlobalSceneGraph(), COL );
642 }
643
644 void Patch_Transpose(){
645         UndoableCommand undo( "patchTranspose" );
646
647         Scene_PatchTranspose_Selected( GlobalSceneGraph() );
648 }
649
650 void Patch_Cap(){
651         // FIXME: add support for patch cap creation
652         // Patch_CapCurrent();
653         UndoableCommand undo( "patchCreateCaps" );
654
655         Scene_PatchDoCap_Selected( GlobalSceneGraph(), TextureBrowser_GetSelectedShader( GlobalTextureBrowser() ) );
656 }
657
658 void Patch_CycleProjection(){
659         UndoableCommand undo( "patchCycleUVProjectionAxis" );
660
661         Scene_PatchCapTexture_Selected( GlobalSceneGraph() );
662 }
663
664 ///\todo Unfinished.
665 void Patch_OverlayOn(){
666 }
667
668 ///\todo Unfinished.
669 void Patch_OverlayOff(){
670 }
671
672 void Patch_FlipTextureX(){
673         UndoableCommand undo( "patchFlipTextureU" );
674
675         Scene_PatchFlipTexture_Selected( GlobalSceneGraph(), 0 );
676 }
677
678 void Patch_FlipTextureY(){
679         UndoableCommand undo( "patchFlipTextureV" );
680
681         Scene_PatchFlipTexture_Selected( GlobalSceneGraph(), 1 );
682 }
683
684 void Patch_NaturalTexture(){
685         UndoableCommand undo( "patchNaturalTexture" );
686
687         Scene_PatchNaturalTexture_Selected( GlobalSceneGraph() );
688 }
689
690 void DoPatchDeformDlg();
691
692 void Patch_Deform(){
693         UndoableCommand undo( "patchDeform" );
694
695         DoPatchDeformDlg();
696 }
697
698 void DoPatchThickenDlg();
699
700 void Patch_Thicken(){
701         UndoableCommand undo( "patchThicken" );
702
703         DoPatchThickenDlg();
704 }
705
706
707
708 #include "ifilter.h"
709
710
711 class filter_patch_all : public PatchFilter
712 {
713 public:
714 bool filter( const Patch& patch ) const {
715         return true;
716 }
717 };
718
719 class filter_patch_shader : public PatchFilter
720 {
721 const char* m_shader;
722 public:
723 filter_patch_shader( const char* shader ) : m_shader( shader ){
724 }
725 bool filter( const Patch& patch ) const {
726         return shader_equal( patch.GetShader(), m_shader );
727 }
728 };
729
730 class filter_patch_flags : public PatchFilter
731 {
732 int m_flags;
733 public:
734 filter_patch_flags( int flags ) : m_flags( flags ){
735 }
736 bool filter( const Patch& patch ) const {
737         return ( patch.getShaderFlags() & m_flags ) != 0;
738 }
739 };
740
741
742 filter_patch_all g_filter_patch_all;
743 filter_patch_shader g_filter_patch_clip( "textures/common/clip" );
744 filter_patch_shader g_filter_patch_weapclip( "textures/common/weapclip" );
745 filter_patch_flags g_filter_patch_translucent( QER_TRANS );
746
747 void PatchFilters_construct(){
748         add_patch_filter( g_filter_patch_all, EXCLUDE_CURVES );
749         add_patch_filter( g_filter_patch_clip, EXCLUDE_CLIP );
750         add_patch_filter( g_filter_patch_weapclip, EXCLUDE_CLIP );
751         add_patch_filter( g_filter_patch_translucent, EXCLUDE_TRANSLUCENT );
752 }
753
754
755 #include "preferences.h"
756
757 void Patch_constructPreferences( PreferencesPage& page ){
758         page.appendEntry( "Patch Subdivide Threshold", g_PatchSubdivideThreshold );
759 }
760 void Patch_constructPage( PreferenceGroup& group ){
761         PreferencesPage page( group.createPage( "Patches", "Patch Display Preferences" ) );
762         Patch_constructPreferences( page );
763 }
764 void Patch_registerPreferencesPage(){
765         PreferencesDialog_addDisplayPage( FreeCaller1<PreferenceGroup&, Patch_constructPage>() );
766 }
767
768
769 #include "preferencesystem.h"
770
771 void PatchPreferences_construct(){
772         GlobalPreferenceSystem().registerPreference( "Subdivisions", IntImportStringCaller( g_PatchSubdivideThreshold ), IntExportStringCaller( g_PatchSubdivideThreshold ) );
773 }
774
775
776 #include "generic/callback.h"
777
778 void Patch_registerCommands(){
779         GlobalCommands_insert( "InvertCurveTextureX", FreeCaller<Patch_FlipTextureX>(), Accelerator( 'I', (GdkModifierType)( GDK_SHIFT_MASK | GDK_CONTROL_MASK ) ) );
780         GlobalCommands_insert( "InvertCurveTextureY", FreeCaller<Patch_FlipTextureY>(), Accelerator( 'I', (GdkModifierType)GDK_SHIFT_MASK ) );
781         GlobalCommands_insert( "IncPatchColumn", FreeCaller<Patch_InsertInsertColumn>(), Accelerator( GDK_KP_Add, (GdkModifierType)( GDK_SHIFT_MASK | GDK_CONTROL_MASK ) ) );
782         GlobalCommands_insert( "IncPatchRow", FreeCaller<Patch_InsertInsertRow>(), Accelerator( GDK_KP_Add, (GdkModifierType)GDK_CONTROL_MASK ) );
783         GlobalCommands_insert( "DecPatchColumn", FreeCaller<Patch_DeleteLastColumn>(), Accelerator( GDK_KP_Subtract, (GdkModifierType)( GDK_SHIFT_MASK | GDK_CONTROL_MASK ) ) );
784         GlobalCommands_insert( "DecPatchRow", FreeCaller<Patch_DeleteLastRow>(), Accelerator( GDK_KP_Subtract, (GdkModifierType)GDK_CONTROL_MASK ) );
785         GlobalCommands_insert( "NaturalizePatch", FreeCaller<Patch_NaturalTexture>(), Accelerator( 'N', (GdkModifierType)GDK_CONTROL_MASK ) );
786         GlobalCommands_insert( "PatchCylinder", FreeCaller<Patch_Cylinder>() );
787         GlobalCommands_insert( "PatchDenseCylinder", FreeCaller<Patch_DenseCylinder>() );
788         GlobalCommands_insert( "PatchVeryDenseCylinder", FreeCaller<Patch_VeryDenseCylinder>() );
789         GlobalCommands_insert( "PatchSquareCylinder", FreeCaller<Patch_SquareCylinder>() );
790         GlobalCommands_insert( "PatchXactCylinder", FreeCaller<Patch_XactCylinder>() );
791         GlobalCommands_insert( "PatchXactSphere", FreeCaller<Patch_XactSphere>() );
792         GlobalCommands_insert( "PatchXactCone", FreeCaller<Patch_XactCone>() );
793         GlobalCommands_insert( "PatchEndCap", FreeCaller<Patch_Endcap>() );
794         GlobalCommands_insert( "PatchBevel", FreeCaller<Patch_Bevel>() );
795         GlobalCommands_insert( "PatchSquareBevel", FreeCaller<Patch_SquareBevel>() );
796         GlobalCommands_insert( "PatchSquareEndcap", FreeCaller<Patch_SquareEndcap>() );
797         GlobalCommands_insert( "PatchCone", FreeCaller<Patch_Cone>() );
798         GlobalCommands_insert( "PatchSphere", FreeCaller<Patch_Sphere>() );
799         GlobalCommands_insert( "SimplePatchMesh", FreeCaller<Patch_Plane>(), Accelerator( 'P', (GdkModifierType)GDK_SHIFT_MASK ) );
800         GlobalCommands_insert( "PatchInsertInsertColumn", FreeCaller<Patch_InsertInsertColumn>() );
801         GlobalCommands_insert( "PatchInsertAddColumn", FreeCaller<Patch_InsertAddColumn>() );
802         GlobalCommands_insert( "PatchInsertInsertRow", FreeCaller<Patch_InsertInsertRow>() );
803         GlobalCommands_insert( "PatchInsertAddRow", FreeCaller<Patch_InsertAddRow>() );
804         GlobalCommands_insert( "PatchDeleteFirstColumn", FreeCaller<Patch_DeleteFirstColumn>() );
805         GlobalCommands_insert( "PatchDeleteLastColumn", FreeCaller<Patch_DeleteLastColumn>() );
806         GlobalCommands_insert( "PatchDeleteFirstRow", FreeCaller<Patch_DeleteFirstRow>() );
807         GlobalCommands_insert( "PatchDeleteLastRow", FreeCaller<Patch_DeleteLastRow>() );
808         GlobalCommands_insert( "InvertCurve", FreeCaller<Patch_Invert>(), Accelerator( 'I', (GdkModifierType)GDK_CONTROL_MASK ) );
809         GlobalCommands_insert( "RedisperseRows", FreeCaller<Patch_RedisperseRows>(), Accelerator( 'E', (GdkModifierType)GDK_CONTROL_MASK ) );
810         GlobalCommands_insert( "RedisperseCols", FreeCaller<Patch_RedisperseCols>(), Accelerator( 'E', (GdkModifierType)( GDK_SHIFT_MASK | GDK_CONTROL_MASK ) ) );
811         GlobalCommands_insert( "SmoothRows", FreeCaller<Patch_SmoothRows>(), Accelerator( 'W', (GdkModifierType)GDK_CONTROL_MASK ) );
812         GlobalCommands_insert( "SmoothCols", FreeCaller<Patch_SmoothCols>(), Accelerator( 'W', (GdkModifierType)( GDK_SHIFT_MASK | GDK_CONTROL_MASK ) ) );
813         GlobalCommands_insert( "MatrixTranspose", FreeCaller<Patch_Transpose>(), Accelerator( 'M', (GdkModifierType)( GDK_SHIFT_MASK | GDK_CONTROL_MASK ) ) );
814         GlobalCommands_insert( "CapCurrentCurve", FreeCaller<Patch_Cap>(), Accelerator( 'C', (GdkModifierType)GDK_SHIFT_MASK ) );
815         GlobalCommands_insert( "CycleCapTexturePatch", FreeCaller<Patch_CycleProjection>(), Accelerator( 'N', (GdkModifierType)GDK_SHIFT_MASK ) );
816         GlobalCommands_insert( "MakeOverlayPatch", FreeCaller<Patch_OverlayOn>(), Accelerator( 'Y' ) );
817         GlobalCommands_insert( "ClearPatchOverlays", FreeCaller<Patch_OverlayOff>(), Accelerator( 'L', (GdkModifierType)GDK_CONTROL_MASK ) );
818         GlobalCommands_insert( "PatchDeform", FreeCaller<Patch_Deform>() );
819         GlobalCommands_insert( "PatchThicken", FreeCaller<Patch_Thicken>() );
820 }
821
822 void Patch_constructToolbar( GtkToolbar* toolbar ){
823         toolbar_append_button( toolbar, "Put caps on the current patch (SHIFT + C)", "curve_cap.bmp", "CapCurrentCurve" );
824 }
825
826 void Patch_constructMenu( GtkMenu* menu ){
827         create_menu_item_with_mnemonic( menu, "Cylinder", "PatchCylinder" );
828         {
829                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "More Cylinders" );
830                 if ( g_Layout_enableDetachableMenus.m_value ) {
831                         menu_tearoff( menu_in_menu );
832                 }
833                 create_menu_item_with_mnemonic( menu_in_menu, "Dense Cylinder", "PatchDenseCylinder" );
834                 create_menu_item_with_mnemonic( menu_in_menu, "Very Dense Cylinder", "PatchVeryDenseCylinder" );
835                 create_menu_item_with_mnemonic( menu_in_menu, "Square Cylinder", "PatchSquareCylinder" );
836                 create_menu_item_with_mnemonic( menu_in_menu, "Exact Cylinder...", "PatchXactCylinder" );
837         }
838         menu_separator( menu );
839         create_menu_item_with_mnemonic( menu, "End cap", "PatchEndCap" );
840         create_menu_item_with_mnemonic( menu, "Bevel", "PatchBevel" );
841         {
842 //              GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "More End caps, Bevels" );
843 //              if ( g_Layout_enableDetachableMenus.m_value ) {
844 //                      menu_tearoff( menu_in_menu );
845 //              }
846                 create_menu_item_with_mnemonic( menu, "Square Endcap", "PatchSquareBevel" );
847                 create_menu_item_with_mnemonic( menu, "Square Bevel", "PatchSquareEndcap" );
848         }
849         menu_separator( menu );
850         create_menu_item_with_mnemonic( menu, "Cone", "PatchCone" );
851         create_menu_item_with_mnemonic( menu, "Exact Cone...", "PatchXactCone" );
852         menu_separator( menu );
853         create_menu_item_with_mnemonic( menu, "Sphere", "PatchSphere" );
854         create_menu_item_with_mnemonic( menu, "Exact Sphere...", "PatchXactSphere" );
855         menu_separator( menu );
856         create_menu_item_with_mnemonic( menu, "Simple Patch Mesh...", "SimplePatchMesh" );
857         menu_separator( menu );
858         {
859                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Insert" );
860                 if ( g_Layout_enableDetachableMenus.m_value ) {
861                         menu_tearoff( menu_in_menu );
862                 }
863                 create_menu_item_with_mnemonic( menu_in_menu, "Insert (2) Columns", "PatchInsertInsertColumn" );
864                 create_menu_item_with_mnemonic( menu_in_menu, "Add (2) Columns", "PatchInsertAddColumn" );
865                 menu_separator( menu_in_menu );
866                 create_menu_item_with_mnemonic( menu_in_menu, "Insert (2) Rows", "PatchInsertInsertRow" );
867                 create_menu_item_with_mnemonic( menu_in_menu, "Add (2) Rows", "PatchInsertAddRow" );
868         }
869         {
870                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Delete" );
871                 if ( g_Layout_enableDetachableMenus.m_value ) {
872                         menu_tearoff( menu_in_menu );
873                 }
874                 create_menu_item_with_mnemonic( menu_in_menu, "First (2) Columns", "PatchDeleteFirstColumn" );
875                 create_menu_item_with_mnemonic( menu_in_menu, "Last (2) Columns", "PatchDeleteLastColumn" );
876                 menu_separator( menu_in_menu );
877                 create_menu_item_with_mnemonic( menu_in_menu, "First (2) Rows", "PatchDeleteFirstRow" );
878                 create_menu_item_with_mnemonic( menu_in_menu, "Last (2) Rows", "PatchDeleteLastRow" );
879         }
880         menu_separator( menu );
881         {
882                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Matrix" );
883                 if ( g_Layout_enableDetachableMenus.m_value ) {
884                         menu_tearoff( menu_in_menu );
885                 }
886                 create_menu_item_with_mnemonic( menu_in_menu, "Invert", "InvertCurve" );
887                 create_menu_item_with_mnemonic( menu_in_menu, "Transpose", "MatrixTranspose" );
888 //              GtkMenu* menu_3 = create_sub_menu_with_mnemonic( menu_in_menu, "Re-disperse" );
889 //              if ( g_Layout_enableDetachableMenus.m_value ) {
890 //                      menu_tearoff( menu_3 );
891 //              }
892                 menu_separator( menu_in_menu );
893                 create_menu_item_with_mnemonic( menu_in_menu, "Re-disperse Rows", "RedisperseRows" );
894                 create_menu_item_with_mnemonic( menu_in_menu, "Re-disperse Columns", "RedisperseCols" );
895 //              GtkMenu* menu_4 = create_sub_menu_with_mnemonic( menu_in_menu, "Smooth" );
896 //              if ( g_Layout_enableDetachableMenus.m_value ) {
897 //                      menu_tearoff( menu_4 );
898 //              }
899                 menu_separator( menu_in_menu );
900                 create_menu_item_with_mnemonic( menu_in_menu, "Smooth Rows", "SmoothRows" );
901                 create_menu_item_with_mnemonic( menu_in_menu, "Smooth Columns", "SmoothCols" );
902         }
903         menu_separator( menu );
904         create_menu_item_with_mnemonic( menu, "Cap Selection", "CapCurrentCurve" );
905         menu_separator( menu );
906         {
907                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Texture" );
908                 if ( g_Layout_enableDetachableMenus.m_value ) {
909                         menu_tearoff( menu_in_menu );
910                 }
911                 create_menu_item_with_mnemonic( menu_in_menu, "Cycle Projection", "CycleCapTexturePatch" );
912                 create_menu_item_with_mnemonic( menu_in_menu, "Naturalize", "NaturalizePatch" );
913                 create_menu_item_with_mnemonic( menu_in_menu, "Invert X", "InvertCurveTextureX" );
914                 create_menu_item_with_mnemonic( menu_in_menu, "Invert Y", "InvertCurveTextureY" );
915
916         }
917         menu_separator( menu );
918         {
919                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Overlay" );
920                 if ( g_Layout_enableDetachableMenus.m_value ) {
921                         menu_tearoff( menu_in_menu );
922                 }
923                 create_menu_item_with_mnemonic( menu_in_menu, "Set", "MakeOverlayPatch" );
924                 create_menu_item_with_mnemonic( menu_in_menu, "Clear", "ClearPatchOverlays" );
925         }
926         menu_separator( menu );
927         create_menu_item_with_mnemonic( menu, "Deform...", "PatchDeform" );
928         create_menu_item_with_mnemonic( menu, "Thicken...", "PatchThicken" );
929 }
930
931
932 #include <gtk/gtkbox.h>
933 #include <gtk/gtktable.h>
934 #include <gtk/gtktogglebutton.h>
935 #include <gtk/gtkradiobutton.h>
936 #include <gtk/gtkcombobox.h>
937 #include <gtk/gtklabel.h>
938 #include "gtkutil/dialog.h"
939 #include "gtkutil/widget.h"
940
941 void DoNewPatchDlg( EPatchPrefab prefab, int minrows, int mincols, int defrows, int defcols, int maxrows, int maxcols ){
942         ModalDialog dialog;
943         GtkComboBox* width;
944         GtkComboBox* height;
945
946         GtkWindow* window = create_dialog_window( MainFrame_getWindow(), "Patch density", G_CALLBACK( dialog_delete_callback ), &dialog );
947
948         GtkAccelGroup* accel = gtk_accel_group_new();
949         gtk_window_add_accel_group( window, accel );
950
951         {
952                 GtkHBox* hbox = create_dialog_hbox( 4, 4 );
953                 gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( hbox ) );
954                 {
955                         GtkTable* table = create_dialog_table( 2, 2, 4, 4 );
956                         gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( table ), TRUE, TRUE, 0 );
957                         {
958                                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Width:" ) );
959                                 gtk_widget_show( GTK_WIDGET( label ) );
960                                 gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 0, 1,
961                                                                   (GtkAttachOptions) ( GTK_FILL ),
962                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
963                                 gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
964                         }
965                         {
966                                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Height:" ) );
967                                 gtk_widget_show( GTK_WIDGET( label ) );
968                                 gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 1, 2,
969                                                                   (GtkAttachOptions) ( GTK_FILL ),
970                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
971                                 gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
972                         }
973
974                         {
975                                 GtkComboBox* combo = GTK_COMBO_BOX( gtk_combo_box_new_text() );
976 #define D_ITEM( x ) if ( x >= mincols && ( !maxcols || x <= maxcols ) ) gtk_combo_box_append_text( combo, # x )
977                                 D_ITEM( 3 );
978                                 D_ITEM( 5 );
979                                 D_ITEM( 7 );
980                                 D_ITEM( 9 );
981                                 D_ITEM( 11 );
982                                 D_ITEM( 13 );
983                                 D_ITEM( 15 );
984                                 D_ITEM( 17 );
985                                 D_ITEM( 19 );
986                                 D_ITEM( 21 );
987                                 D_ITEM( 23 );
988                                 D_ITEM( 25 );
989                                 D_ITEM( 27 );
990                                 D_ITEM( 29 );
991                                 D_ITEM( 31 ); // MAX_PATCH_SIZE is 32, so we should be able to do 31...
992 #undef D_ITEM
993                                 gtk_widget_show( GTK_WIDGET( combo ) );
994                                 gtk_table_attach( table, GTK_WIDGET( combo ), 1, 2, 0, 1,
995                                                                   (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
996                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
997
998                                 width = combo;
999                         }
1000                         {
1001                                 GtkComboBox* combo = GTK_COMBO_BOX( gtk_combo_box_new_text() );
1002 #define D_ITEM( x ) if ( x >= minrows && ( !maxrows || x <= maxrows ) ) gtk_combo_box_append_text( combo, # x )
1003                                 D_ITEM( 3 );
1004                                 D_ITEM( 5 );
1005                                 D_ITEM( 7 );
1006                                 D_ITEM( 9 );
1007                                 D_ITEM( 11 );
1008                                 D_ITEM( 13 );
1009                                 D_ITEM( 15 );
1010                                 D_ITEM( 17 );
1011                                 D_ITEM( 19 );
1012                                 D_ITEM( 21 );
1013                                 D_ITEM( 23 );
1014                                 D_ITEM( 25 );
1015                                 D_ITEM( 27 );
1016                                 D_ITEM( 29 );
1017                                 D_ITEM( 31 ); // MAX_PATCH_SIZE is 32, so we should be able to do 31...
1018 #undef D_ITEM
1019                                 gtk_widget_show( GTK_WIDGET( combo ) );
1020                                 gtk_table_attach( table, GTK_WIDGET( combo ), 1, 2, 1, 2,
1021                                                                   (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
1022                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
1023
1024                                 height = combo;
1025                         }
1026                 }
1027
1028                 {
1029                         GtkVBox* vbox = create_dialog_vbox( 4 );
1030                         gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( vbox ), TRUE, TRUE, 0 );
1031                         {
1032                                 GtkButton* button = create_dialog_button( "OK", G_CALLBACK( dialog_button_ok ), &dialog );
1033                                 gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( button ), FALSE, FALSE, 0 );
1034                                 widget_make_default( GTK_WIDGET( button ) );
1035                                 gtk_widget_grab_focus( GTK_WIDGET( button ) );
1036                                 gtk_widget_add_accelerator( GTK_WIDGET( button ), "clicked", accel, GDK_Return, (GdkModifierType)0, (GtkAccelFlags)0 );
1037                         }
1038                         {
1039                                 GtkButton* button = create_dialog_button( "Cancel", G_CALLBACK( dialog_button_cancel ), &dialog );
1040                                 gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( button ), FALSE, FALSE, 0 );
1041                                 gtk_widget_add_accelerator( GTK_WIDGET( button ), "clicked", accel, GDK_Escape, (GdkModifierType)0, (GtkAccelFlags)0 );
1042                         }
1043                 }
1044         }
1045
1046         // Initialize dialog
1047         gtk_combo_box_set_active( width, ( defcols - mincols ) / 2 );
1048         gtk_combo_box_set_active( height, ( defrows - minrows ) / 2 );
1049
1050         if ( modal_dialog_show( window, dialog ) == eIDOK ) {
1051                 int w = gtk_combo_box_get_active( width ) * 2 + mincols;
1052                 int h = gtk_combo_box_get_active( height ) * 2 + minrows;
1053
1054                 Scene_PatchConstructPrefab( GlobalSceneGraph(), PatchCreator_getBounds(), TextureBrowser_GetSelectedShader( GlobalTextureBrowser() ), prefab, GlobalXYWnd_getCurrentViewType(), w, h );
1055         }
1056
1057         gtk_widget_destroy( GTK_WIDGET( window ) );
1058 }
1059
1060
1061 void DoPatchDeformDlg(){
1062         ModalDialog dialog;
1063         GtkWidget* deformW;
1064
1065         GtkWindow* window = create_dialog_window( MainFrame_getWindow(), "Patch deform", G_CALLBACK( dialog_delete_callback ), &dialog );
1066
1067         GtkAccelGroup* accel = gtk_accel_group_new();
1068         gtk_window_add_accel_group( window, accel );
1069
1070         {
1071                 GtkHBox* hbox = create_dialog_hbox( 4, 4 );
1072                 gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( hbox ) );
1073                 {
1074                         GtkTable* table = create_dialog_table( 2, 2, 4, 4 );
1075                         gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( table ), TRUE, TRUE, 0 );
1076                         {
1077                                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Max deform:" ) );
1078                                 gtk_widget_show( GTK_WIDGET( label ) );
1079                                 gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 0, 1,
1080                                                                   (GtkAttachOptions) ( GTK_FILL ),
1081                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
1082                                 gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
1083                         }
1084                         {
1085                                 GtkWidget* entry = gtk_entry_new();
1086                                 gtk_entry_set_text( GTK_ENTRY( entry ), "16" );
1087                                 gtk_widget_show( entry );
1088                                 gtk_table_attach( table, entry, 1, 2, 0, 1,
1089                                                                   (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
1090                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
1091
1092                                 deformW = entry;
1093                         }
1094                 }
1095                 {
1096                         GtkVBox* vbox = create_dialog_vbox( 4 );
1097                         gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( vbox ), TRUE, TRUE, 0 );
1098                         {
1099                                 GtkButton* button = create_dialog_button( "OK", G_CALLBACK( dialog_button_ok ), &dialog );
1100                                 gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( button ), FALSE, FALSE, 0 );
1101                                 widget_make_default( GTK_WIDGET( button ) );
1102                                 gtk_widget_grab_focus( GTK_WIDGET( button ) );
1103                                 gtk_widget_add_accelerator( GTK_WIDGET( button ), "clicked", accel, GDK_Return, (GdkModifierType)0, (GtkAccelFlags)0 );
1104                         }
1105                         {
1106                                 GtkButton* button = create_dialog_button( "Cancel", G_CALLBACK( dialog_button_cancel ), &dialog );
1107                                 gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( button ), FALSE, FALSE, 0 );
1108                                 gtk_widget_add_accelerator( GTK_WIDGET( button ), "clicked", accel, GDK_Escape, (GdkModifierType)0, (GtkAccelFlags)0 );
1109                         }
1110                 }
1111         }
1112
1113         if ( modal_dialog_show( window, dialog ) == eIDOK ) {
1114                 int deform = static_cast<int>( atoi( gtk_entry_get_text( GTK_ENTRY( deformW ) ) ) );
1115                 Scene_PatchDeform( GlobalSceneGraph(), deform );
1116         }
1117
1118         gtk_widget_destroy( GTK_WIDGET( window ) );
1119 }
1120
1121
1122
1123 EMessageBoxReturn DoCapDlg( ECapDialog* type ){
1124         ModalDialog dialog;
1125         ModalDialogButton ok_button( dialog, eIDOK );
1126         ModalDialogButton cancel_button( dialog, eIDCANCEL );
1127         GtkWidget* bevel;
1128         GtkWidget* ibevel;
1129         GtkWidget* endcap;
1130         GtkWidget* iendcap;
1131         GtkWidget* cylinder;
1132
1133         GtkWindow* window = create_modal_dialog_window( MainFrame_getWindow(), "Cap", dialog );
1134
1135         GtkAccelGroup *accel_group = gtk_accel_group_new();
1136         gtk_window_add_accel_group( window, accel_group );
1137
1138         {
1139                 GtkHBox* hbox = create_dialog_hbox( 4, 4 );
1140                 gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( hbox ) );
1141
1142                 {
1143                         // Gef: Added a vbox to contain the toggle buttons
1144                         GtkVBox* radio_vbox = create_dialog_vbox( 4 );
1145                         gtk_container_add( GTK_CONTAINER( hbox ), GTK_WIDGET( radio_vbox ) );
1146
1147                         {
1148                                 GtkTable* table = GTK_TABLE( gtk_table_new( 5, 2, FALSE ) );
1149                                 gtk_widget_show( GTK_WIDGET( table ) );
1150                                 gtk_box_pack_start( GTK_BOX( radio_vbox ), GTK_WIDGET( table ), TRUE, TRUE, 0 );
1151                                 gtk_table_set_row_spacings( table, 5 );
1152                                 gtk_table_set_col_spacings( table, 5 );
1153
1154                                 {
1155                                         GtkImage* image = new_local_image( "cap_bevel.bmp" );
1156                                         gtk_widget_show( GTK_WIDGET( image ) );
1157                                         gtk_table_attach( table, GTK_WIDGET( image ), 0, 1, 0, 1,
1158                                                                           (GtkAttachOptions) ( GTK_FILL ),
1159                                                                           (GtkAttachOptions) ( 0 ), 0, 0 );
1160                                 }
1161                                 {
1162                                         GtkImage* image = new_local_image( "cap_endcap.bmp" );
1163                                         gtk_widget_show( GTK_WIDGET( image ) );
1164                                         gtk_table_attach( table, GTK_WIDGET( image ), 0, 1, 1, 2,
1165                                                                           (GtkAttachOptions) ( GTK_FILL ),
1166                                                                           (GtkAttachOptions) ( 0 ), 0, 0 );
1167                                 }
1168                                 {
1169                                         GtkImage* image = new_local_image( "cap_ibevel.bmp" );
1170                                         gtk_widget_show( GTK_WIDGET( image ) );
1171                                         gtk_table_attach( table, GTK_WIDGET( image ), 0, 1, 2, 3,
1172                                                                           (GtkAttachOptions) ( GTK_FILL ),
1173                                                                           (GtkAttachOptions) ( 0 ), 0, 0 );
1174                                 }
1175                                 {
1176                                         GtkImage* image = new_local_image( "cap_iendcap.bmp" );
1177                                         gtk_widget_show( GTK_WIDGET( image ) );
1178                                         gtk_table_attach( table, GTK_WIDGET( image ), 0, 1, 3, 4,
1179                                                                           (GtkAttachOptions) ( GTK_FILL ),
1180                                                                           (GtkAttachOptions) ( 0 ), 0, 0 );
1181                                 }
1182                                 {
1183                                         GtkImage* image = new_local_image( "cap_cylinder.bmp" );
1184                                         gtk_widget_show( GTK_WIDGET( image ) );
1185                                         gtk_table_attach( table, GTK_WIDGET( image ), 0, 1, 4, 5,
1186                                                                           (GtkAttachOptions) ( GTK_FILL ),
1187                                                                           (GtkAttachOptions) ( 0 ), 0, 0 );
1188                                 }
1189
1190                                 GSList* group = 0;
1191                                 {
1192                                         GtkWidget* button = gtk_radio_button_new_with_label( group, "Bevel" );
1193                                         gtk_widget_show( button );
1194                                         gtk_table_attach( table, button, 1, 2, 0, 1,
1195                                                                           (GtkAttachOptions) ( GTK_FILL | GTK_EXPAND ),
1196                                                                           (GtkAttachOptions) ( 0 ), 0, 0 );
1197                                         group = gtk_radio_button_group( GTK_RADIO_BUTTON( button ) );
1198
1199                                         bevel = button;
1200                                 }
1201                                 {
1202                                         GtkWidget* button = gtk_radio_button_new_with_label( group, "Endcap" );
1203                                         gtk_widget_show( button );
1204                                         gtk_table_attach( table, button, 1, 2, 1, 2,
1205                                                                           (GtkAttachOptions) ( GTK_FILL | GTK_EXPAND ),
1206                                                                           (GtkAttachOptions) ( 0 ), 0, 0 );
1207                                         group = gtk_radio_button_group( GTK_RADIO_BUTTON( button ) );
1208
1209                                         endcap = button;
1210                                 }
1211                                 {
1212                                         GtkWidget* button = gtk_radio_button_new_with_label( group, "Inverted Bevel" );
1213                                         gtk_widget_show( button );
1214                                         gtk_table_attach( table, button, 1, 2, 2, 3,
1215                                                                           (GtkAttachOptions) ( GTK_FILL | GTK_EXPAND ),
1216                                                                           (GtkAttachOptions) ( 0 ), 0, 0 );
1217                                         group = gtk_radio_button_group( GTK_RADIO_BUTTON( button ) );
1218
1219                                         ibevel = button;
1220                                 }
1221                                 {
1222                                         GtkWidget* button = gtk_radio_button_new_with_label( group, "Inverted Endcap" );
1223                                         gtk_widget_show( button );
1224                                         gtk_table_attach( table, button, 1, 2, 3, 4,
1225                                                                           (GtkAttachOptions) ( GTK_FILL | GTK_EXPAND ),
1226                                                                           (GtkAttachOptions) ( 0 ), 0, 0 );
1227                                         group = gtk_radio_button_group( GTK_RADIO_BUTTON( button ) );
1228
1229                                         iendcap = button;
1230                                 }
1231                                 {
1232                                         GtkWidget* button = gtk_radio_button_new_with_label( group, "Cylinder" );
1233                                         gtk_widget_show( button );
1234                                         gtk_table_attach( table, button, 1, 2, 4, 5,
1235                                                                           (GtkAttachOptions) ( GTK_FILL | GTK_EXPAND ),
1236                                                                           (GtkAttachOptions) ( 0 ), 0, 0 );
1237                                         group = gtk_radio_button_group( GTK_RADIO_BUTTON( button ) );
1238
1239                                         cylinder = button;
1240                                 }
1241                         }
1242                 }
1243
1244                 {
1245                         GtkVBox* vbox = create_dialog_vbox( 4 );
1246                         gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( vbox ), FALSE, FALSE, 0 );
1247                         {
1248                                 GtkButton* button = create_modal_dialog_button( "OK", ok_button );
1249                                 gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( button ), FALSE, FALSE, 0 );
1250                                 widget_make_default( GTK_WIDGET( button ) );
1251                                 gtk_widget_add_accelerator( GTK_WIDGET( button ), "clicked", accel_group, GDK_Return, (GdkModifierType)0, GTK_ACCEL_VISIBLE );
1252                         }
1253                         {
1254                                 GtkButton* button = create_modal_dialog_button( "Cancel", cancel_button );
1255                                 gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( button ), FALSE, FALSE, 0 );
1256                                 gtk_widget_add_accelerator( GTK_WIDGET( button ), "clicked", accel_group, GDK_Escape, (GdkModifierType)0, GTK_ACCEL_VISIBLE );
1257                         }
1258                 }
1259         }
1260
1261         // Initialize dialog
1262         gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( bevel ), TRUE );
1263
1264         EMessageBoxReturn ret = modal_dialog_show( window, dialog );
1265         if ( ret == eIDOK ) {
1266                 if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( bevel ) ) ) {
1267                         *type = PATCHCAP_BEVEL;
1268                 }
1269                 else if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( endcap ) ) ) {
1270                         *type = PATCHCAP_ENDCAP;
1271                 }
1272                 else if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( ibevel ) ) ) {
1273                         *type = PATCHCAP_INVERTED_BEVEL;
1274                 }
1275                 else if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( iendcap ) ) ) {
1276                         *type = PATCHCAP_INVERTED_ENDCAP;
1277                 }
1278                 else if ( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( cylinder ) ) ) {
1279                         *type = PATCHCAP_CYLINDER;
1280                 }
1281         }
1282
1283         gtk_widget_destroy( GTK_WIDGET( window ) );
1284
1285         return ret;
1286 }
1287
1288
1289 void DoPatchThickenDlg(){
1290         ModalDialog dialog;
1291         GtkWidget* thicknessW;
1292         GtkWidget* seamsW;
1293         GtkWidget* radX;
1294         GtkWidget* radY;
1295         GtkWidget* radZ;
1296         GtkWidget* radNormals;
1297
1298         GtkWindow* window = create_dialog_window( MainFrame_getWindow(), "Patch thicken", G_CALLBACK( dialog_delete_callback ), &dialog );
1299
1300         GtkAccelGroup* accel = gtk_accel_group_new();
1301         gtk_window_add_accel_group( window, accel );
1302
1303         {
1304                 GtkHBox* hbox = create_dialog_hbox( 4, 4 );
1305                 gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( hbox ) );
1306                 {
1307                         GtkTable* table = create_dialog_table( 2, 4, 4, 4 );
1308                         gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( table ), TRUE, TRUE, 0 );
1309                         {
1310                                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Thickness:" ) );
1311                                 gtk_widget_show( GTK_WIDGET( label ) );
1312                                 gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 0, 1,
1313                                                                   (GtkAttachOptions) ( GTK_FILL ),
1314                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
1315                                 gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
1316                         }
1317                         {
1318                                 GtkWidget* entry = gtk_entry_new();
1319                                 gtk_entry_set_text( GTK_ENTRY( entry ), "16" );
1320                                 gtk_widget_set_size_request( entry, 40, -1 );
1321                                 gtk_widget_show( entry );
1322                                 gtk_table_attach( table, entry, 1, 2, 0, 1,
1323                                                                   (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
1324                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
1325
1326                                 thicknessW = entry;
1327                         }
1328                         {
1329                                 // Create the "create seams" label
1330                                 GtkWidget* _seamsCheckBox = gtk_check_button_new_with_label( "Side walls" );
1331                                 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( _seamsCheckBox ), TRUE );
1332                                 gtk_widget_show( _seamsCheckBox );
1333                                 gtk_table_attach( table, _seamsCheckBox, 3, 4, 0, 1,
1334                                                                   (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
1335                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
1336                                 seamsW = _seamsCheckBox;
1337
1338                         }
1339                         {
1340                                 // Create the radio button group for choosing the extrude axis
1341                                 GtkWidget* _radNormals = gtk_radio_button_new_with_label( NULL, "Normal" );
1342                                 GtkWidget* _radX = gtk_radio_button_new_with_label_from_widget( GTK_RADIO_BUTTON(_radNormals), "X" );
1343                                 GtkWidget* _radY = gtk_radio_button_new_with_label_from_widget( GTK_RADIO_BUTTON(_radNormals), "Y" );
1344                                 GtkWidget* _radZ = gtk_radio_button_new_with_label_from_widget( GTK_RADIO_BUTTON(_radNormals), "Z" );
1345                                 gtk_widget_show( _radNormals );
1346                                 gtk_widget_show( _radX );
1347                                 gtk_widget_show( _radY );
1348                                 gtk_widget_show( _radZ );
1349
1350
1351                                 // Pack the buttons into the table
1352                                 gtk_table_attach( table, _radNormals, 0, 1, 1, 2,
1353                                                                   (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
1354                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
1355                                 gtk_table_attach( table, _radX, 1, 2, 1, 2,
1356                                                                   (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
1357                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
1358                                 gtk_table_attach( table, _radY, 2, 3, 1, 2,
1359                                                                   (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
1360                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
1361                                 gtk_table_attach( table, _radZ, 3, 4, 1, 2,
1362                                                                   (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
1363                                                                   (GtkAttachOptions) ( 0 ), 0, 0 );
1364                                 radX = _radX;
1365                                 radY = _radY;
1366                                 radZ = _radZ;
1367                                 radNormals = _radNormals;
1368                         }
1369                 }
1370                 {
1371                         GtkVBox* vbox = create_dialog_vbox( 4 );
1372                         gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( vbox ), TRUE, TRUE, 0 );
1373                         {
1374                                 GtkButton* button = create_dialog_button( "OK", G_CALLBACK( dialog_button_ok ), &dialog );
1375                                 gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( button ), FALSE, FALSE, 0 );
1376                                 widget_make_default( GTK_WIDGET( button ) );
1377                                 gtk_widget_grab_focus( GTK_WIDGET( button ) );
1378                                 gtk_widget_add_accelerator( GTK_WIDGET( button ), "clicked", accel, GDK_Return, (GdkModifierType)0, (GtkAccelFlags)0 );
1379                         }
1380                         {
1381                                 GtkButton* button = create_dialog_button( "Cancel", G_CALLBACK( dialog_button_cancel ), &dialog );
1382                                 gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( button ), FALSE, FALSE, 0 );
1383                                 gtk_widget_add_accelerator( GTK_WIDGET( button ), "clicked", accel, GDK_Escape, (GdkModifierType)0, (GtkAccelFlags)0 );
1384                         }
1385                 }
1386         }
1387
1388         if ( modal_dialog_show( window, dialog ) == eIDOK ) {
1389                 int axis;
1390                 bool seams;
1391                 float thickness = static_cast<float>( atoi( gtk_entry_get_text( GTK_ENTRY( thicknessW ) ) ) );
1392                 seams = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON( seamsW )) ? true : false;
1393
1394                 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radX))) {
1395                         axis = 0;
1396                 }
1397                 else if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radY))) {
1398                         axis = 1;
1399                 }
1400                 else if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(radZ))) {
1401                         axis = 2;
1402                 }
1403                 else  {
1404                         // Extrude along normals
1405                         axis = 3;
1406                 }
1407                 Scene_PatchThicken( GlobalSceneGraph(), thickness, seams, axis );
1408         }
1409
1410         gtk_widget_destroy( GTK_WIDGET( window ) );
1411 }