]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/build.cpp
Wrap more GTK
[xonotic/netradiant.git] / radiant / build.cpp
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
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 "build.h"
23 #include "debugging/debugging.h"
24
25 #include <gtk/gtk.h>
26 #include <map>
27 #include <list>
28 #include "stream/stringstream.h"
29 #include "versionlib.h"
30
31 #include "mainframe.h"
32
33 typedef std::map<CopiedString, CopiedString> Variables;
34 Variables g_build_variables;
35
36 void build_clear_variables(){
37         g_build_variables.clear();
38 }
39
40 void build_set_variable( const char* name, const char* value ){
41         g_build_variables[name] = value;
42 }
43
44 const char* build_get_variable( const char* name ){
45         Variables::iterator i = g_build_variables.find( name );
46         if ( i != g_build_variables.end() ) {
47                 return ( *i ).second.c_str();
48         }
49         globalErrorStream() << "undefined build variable: " << makeQuoted( name ) << "\n";
50         return "";
51 }
52
53 #include "xml/ixml.h"
54 #include "xml/xmlelement.h"
55
56 class Evaluatable
57 {
58 public:
59 virtual ~Evaluatable() = default;
60 virtual void evaluate( StringBuffer& output ) = 0;
61 virtual void exportXML( XMLImporter& importer ) = 0;
62 };
63
64 class VariableString : public Evaluatable
65 {
66 CopiedString m_string;
67 public:
68 VariableString() : m_string(){
69 }
70 VariableString( const char* string ) : m_string( string ){
71 }
72 const char* c_str() const {
73         return m_string.c_str();
74 }
75 void setString( const char* string ){
76         m_string = string;
77 }
78 void evaluate( StringBuffer& output ){
79         StringBuffer variable;
80         bool in_variable = false;
81         for ( const char* i = m_string.c_str(); *i != '\0'; ++i )
82         {
83                 if ( !in_variable ) {
84                         switch ( *i )
85                         {
86                         case '[':
87                                 in_variable = true;
88                                 break;
89                         default:
90                                 output.push_back( *i );
91                                 break;
92                         }
93                 }
94                 else
95                 {
96                         switch ( *i )
97                         {
98                         case ']':
99                                 in_variable = false;
100                                 output.push_string( build_get_variable( variable.c_str() ) );
101                                 variable.clear();
102                                 break;
103                         default:
104                                 variable.push_back( *i );
105                                 break;
106                         }
107                 }
108         }
109 }
110 void exportXML( XMLImporter& importer ){
111         importer << c_str();
112 }
113 };
114
115 class Conditional : public Evaluatable
116 {
117 VariableString* m_test;
118 public:
119 Evaluatable* m_result;
120 Conditional( VariableString* test ) : m_test( test ){
121 }
122 ~Conditional(){
123         delete m_test;
124         delete m_result;
125 }
126 void evaluate( StringBuffer& output ){
127         StringBuffer buffer;
128         m_test->evaluate( buffer );
129         if ( !string_empty( buffer.c_str() ) ) {
130                 m_result->evaluate( output );
131         }
132 }
133 void exportXML( XMLImporter& importer ){
134         StaticElement conditionElement( "cond" );
135         conditionElement.insertAttribute( "value", m_test->c_str() );
136         importer.pushElement( conditionElement );
137         m_result->exportXML( importer );
138         importer.popElement( conditionElement.name() );
139 }
140 };
141
142 typedef std::vector<Evaluatable*> Evaluatables;
143
144 class Tool : public Evaluatable
145 {
146 Evaluatables m_evaluatables;
147 public:
148 ~Tool(){
149         for ( Evaluatables::iterator i = m_evaluatables.begin(); i != m_evaluatables.end(); ++i )
150         {
151                 delete ( *i );
152         }
153 }
154 void push_back( Evaluatable* evaluatable ){
155         m_evaluatables.push_back( evaluatable );
156 }
157 void evaluate( StringBuffer& output ){
158         for ( Evaluatables::iterator i = m_evaluatables.begin(); i != m_evaluatables.end(); ++i )
159         {
160                 ( *i )->evaluate( output );
161         }
162 }
163 void exportXML( XMLImporter& importer ){
164         for ( Evaluatables::iterator i = m_evaluatables.begin(); i != m_evaluatables.end(); ++i )
165         {
166                 ( *i )->exportXML( importer );
167         }
168 }
169 };
170
171 #include "xml/ixml.h"
172
173 class XMLElementParser : public TextOutputStream
174 {
175 public:
176 virtual ~XMLElementParser() = default;
177 virtual XMLElementParser& pushElement( const XMLElement& element ) = 0;
178 virtual void popElement( const char* name ) = 0;
179 };
180
181 class VariableStringXMLConstructor : public XMLElementParser
182 {
183 StringBuffer m_buffer;
184 VariableString& m_variableString;
185 public:
186 VariableStringXMLConstructor( VariableString& variableString ) : m_variableString( variableString ){
187 }
188 ~VariableStringXMLConstructor(){
189         m_variableString.setString( m_buffer.c_str() );
190 }
191 std::size_t write( const char* buffer, std::size_t length ){
192         m_buffer.push_range( buffer, buffer + length );
193         return length;
194 }
195 XMLElementParser& pushElement( const XMLElement& element ){
196         ERROR_MESSAGE( "parse error: invalid element \"" << element.name() << "\"" );
197         return *this;
198 }
199 void popElement( const char* name ){
200 }
201 };
202
203 class ConditionalXMLConstructor : public XMLElementParser
204 {
205 StringBuffer m_buffer;
206 Conditional& m_conditional;
207 public:
208 ConditionalXMLConstructor( Conditional& conditional ) : m_conditional( conditional ){
209 }
210 ~ConditionalXMLConstructor(){
211         m_conditional.m_result = new VariableString( m_buffer.c_str() );
212 }
213 std::size_t write( const char* buffer, std::size_t length ){
214         m_buffer.push_range( buffer, buffer + length );
215         return length;
216 }
217 XMLElementParser& pushElement( const XMLElement& element ){
218         ERROR_MESSAGE( "parse error: invalid element \"" << element.name() << "\"" );
219         return *this;
220 }
221 void popElement( const char* name ){
222 }
223 };
224
225 class ToolXMLConstructor : public XMLElementParser
226 {
227 StringBuffer m_buffer;
228 Tool& m_tool;
229 ConditionalXMLConstructor* m_conditional;
230 public:
231 ToolXMLConstructor( Tool& tool ) : m_tool( tool ){
232 }
233 ~ToolXMLConstructor(){
234         flush();
235 }
236 std::size_t write( const char* buffer, std::size_t length ){
237         m_buffer.push_range( buffer, buffer + length );
238         return length;
239 }
240 XMLElementParser& pushElement( const XMLElement& element ){
241         if ( string_equal( element.name(), "cond" ) ) {
242                 flush();
243                 Conditional* conditional = new Conditional( new VariableString( element.attribute( "value" ) ) );
244                 m_tool.push_back( conditional );
245                 m_conditional = new ConditionalXMLConstructor( *conditional );
246                 return *m_conditional;
247         }
248         else
249         {
250                 ERROR_MESSAGE( "parse error: invalid element \"" << element.name() << "\"" );
251                 return *this;
252         }
253 }
254 void popElement( const char* name ){
255         if ( string_equal( name, "cond" ) ) {
256                 delete m_conditional;
257         }
258 }
259
260 void flush(){
261         if ( !m_buffer.empty() ) {
262                 m_tool.push_back( new VariableString( m_buffer.c_str() ) );
263                 m_buffer.clear();
264         }
265 }
266 };
267
268 typedef VariableString BuildCommand;
269 typedef std::list<BuildCommand> Build;
270
271 class BuildXMLConstructor : public XMLElementParser
272 {
273 VariableStringXMLConstructor* m_variableString;
274 Build& m_build;
275 public:
276 BuildXMLConstructor( Build& build ) : m_build( build ){
277 }
278 std::size_t write( const char* buffer, std::size_t length ){
279         return length;
280 }
281 XMLElementParser& pushElement( const XMLElement& element ){
282         if ( string_equal( element.name(), "command" ) ) {
283                 m_build.push_back( BuildCommand() );
284                 m_variableString = new VariableStringXMLConstructor( m_build.back() );
285                 return *m_variableString;
286         }
287         else
288         {
289                 ERROR_MESSAGE( "parse error: invalid element" );
290                 return *this;
291         }
292 }
293 void popElement( const char* name ){
294         delete m_variableString;
295 }
296 };
297
298 typedef std::pair<CopiedString, Build> BuildPair;
299 const char *SEPARATOR_STRING = "-";
300 static bool is_separator( const BuildPair &p ){
301         if ( !string_equal( p.first.c_str(), SEPARATOR_STRING ) ) {
302                 return false;
303         }
304         for ( Build::const_iterator j = p.second.begin(); j != p.second.end(); ++j )
305         {
306                 if ( !string_equal( ( *j ).c_str(), "" ) ) {
307                         return false;
308                 }
309         }
310         return true;
311 }
312
313
314 class BuildPairEqual
315 {
316 const char* m_name;
317 public:
318 BuildPairEqual( const char* name ) : m_name( name ){
319 }
320 bool operator()( const BuildPair& self ) const {
321         return string_equal( self.first.c_str(), m_name );
322 }
323 };
324
325 typedef std::list<BuildPair> Project;
326
327 Project::iterator Project_find( Project& project, const char* name ){
328         return std::find_if( project.begin(), project.end(), BuildPairEqual( name ) );
329 }
330
331 Project::iterator Project_find( Project& project, std::size_t index ){
332         Project::iterator i = project.begin();
333         while ( index-- != 0 && i != project.end() )
334         {
335                 ++i;
336         }
337         return i;
338 }
339
340 Build& project_find( Project& project, const char* build ){
341         Project::iterator i = Project_find( project, build );
342         ASSERT_MESSAGE( i != project.end(), "error finding build command" );
343         return ( *i ).second;
344 }
345
346 Build::iterator Build_find( Build& build, std::size_t index ){
347         Build::iterator i = build.begin();
348         while ( index-- != 0 && i != build.end() )
349         {
350                 ++i;
351         }
352         return i;
353 }
354
355 typedef std::map<CopiedString, Tool> Tools;
356
357 class ProjectXMLConstructor : public XMLElementParser
358 {
359 ToolXMLConstructor* m_tool;
360 BuildXMLConstructor* m_build;
361 Project& m_project;
362 Tools& m_tools;
363 public:
364 ProjectXMLConstructor( Project& project, Tools& tools ) : m_project( project ), m_tools( tools ){
365 }
366 std::size_t write( const char* buffer, std::size_t length ){
367         return length;
368 }
369 XMLElementParser& pushElement( const XMLElement& element ){
370         if ( string_equal( element.name(), "var" ) ) {
371                 Tools::iterator i = m_tools.insert( Tools::value_type( element.attribute( "name" ), Tool() ) ).first;
372                 m_tool = new ToolXMLConstructor( ( *i ).second );
373                 return *m_tool;
374         }
375         else if ( string_equal( element.name(), "build" ) ) {
376                 m_project.push_back( Project::value_type( element.attribute( "name" ), Build() ) );
377                 m_build = new BuildXMLConstructor( m_project.back().second );
378                 return *m_build;
379         }
380         else if ( string_equal( element.name(), "separator" ) ) {
381                 m_project.push_back( Project::value_type( SEPARATOR_STRING, Build() ) );
382                 return *this;
383         }
384         else
385         {
386                 ERROR_MESSAGE( "parse error: invalid element" );
387                 return *this;
388         }
389 }
390 void popElement( const char* name ){
391         if ( string_equal( name, "var" ) ) {
392                 delete m_tool;
393         }
394         else if ( string_equal( name, "build" ) ) {
395                 delete m_build;
396         }
397 }
398 };
399
400 class SkipAllParser : public XMLElementParser
401 {
402 public:
403 std::size_t write( const char* buffer, std::size_t length ){
404         return length;
405 }
406 XMLElementParser& pushElement( const XMLElement& element ){
407         return *this;
408 }
409 void popElement( const char* name ){
410 }
411 };
412
413 class RootXMLConstructor : public XMLElementParser
414 {
415 CopiedString m_elementName;
416 XMLElementParser& m_parser;
417 SkipAllParser m_skip;
418 Version m_version;
419 bool m_compatible;
420 public:
421 RootXMLConstructor( const char* elementName, XMLElementParser& parser, const char* version ) :
422         m_elementName( elementName ),
423         m_parser( parser ),
424         m_version( version_parse( version ) ),
425         m_compatible( false ){
426 }
427 std::size_t write( const char* buffer, std::size_t length ){
428         return length;
429 }
430 XMLElementParser& pushElement( const XMLElement& element ){
431         if ( string_equal( element.name(), m_elementName.c_str() ) ) {
432                 Version dataVersion( version_parse( element.attribute( "version" ) ) );
433                 if ( version_compatible( m_version, dataVersion ) ) {
434                         m_compatible = true;
435                         return m_parser;
436                 }
437                 else
438                 {
439                         return m_skip;
440                 }
441         }
442         else
443         {
444                 //ERROR_MESSAGE("parse error: invalid element \"" << element.name() << "\"");
445                 return *this;
446         }
447 }
448 void popElement( const char* name ){
449 }
450
451 bool versionCompatible() const {
452         return m_compatible;
453 }
454 };
455
456 namespace
457 {
458 Project g_build_project;
459 Tools g_build_tools;
460 bool g_build_changed = false;
461 }
462
463 void build_error_undefined_tool( const char* build, const char* tool ){
464         globalErrorStream() << "build " << makeQuoted( build ) << " refers to undefined tool " << makeQuoted( tool ) << '\n';
465 }
466
467 void project_verify( Project& project, Tools& tools ){
468 #if 0
469         for ( Project::iterator i = project.begin(); i != project.end(); ++i )
470         {
471                 Build& build = ( *i ).second;
472                 for ( Build::iterator j = build.begin(); j != build.end(); ++j )
473                 {
474                         Tools::iterator k = tools.find( ( *j ).first );
475                         if ( k == g_build_tools.end() ) {
476                                 build_error_undefined_tool( ( *i ).first.c_str(), ( *j ).first.c_str() );
477                         }
478                 }
479         }
480 #endif
481 }
482
483 void build_run( const char* name, CommandListener& listener ){
484         for ( Tools::iterator i = g_build_tools.begin(); i != g_build_tools.end(); ++i )
485         {
486                 StringBuffer output;
487                 ( *i ).second.evaluate( output );
488                 build_set_variable( ( *i ).first.c_str(), output.c_str() );
489         }
490
491         {
492                 Project::iterator i = Project_find( g_build_project, name );
493                 if ( i != g_build_project.end() ) {
494                         Build& build = ( *i ).second;
495                         for ( Build::iterator j = build.begin(); j != build.end(); ++j )
496                         {
497                                 StringBuffer output;
498                                 ( *j ).evaluate( output );
499                                 listener.execute( output.c_str() );
500                         }
501                 }
502                 else
503                 {
504                         globalErrorStream() << "build " << makeQuoted( name ) << " not defined";
505                 }
506         }
507 }
508
509
510 typedef std::vector<XMLElementParser*> XMLElementStack;
511
512 class XMLParser : public XMLImporter
513 {
514 XMLElementStack m_stack;
515 public:
516 XMLParser( XMLElementParser& parser ){
517         m_stack.push_back( &parser );
518 }
519 std::size_t write( const char* buffer, std::size_t length ){
520         return m_stack.back()->write( buffer, length );
521 }
522 void pushElement( const XMLElement& element ){
523         m_stack.push_back( &m_stack.back()->pushElement( element ) );
524 }
525 void popElement( const char* name ){
526         m_stack.pop_back();
527         m_stack.back()->popElement( name );
528 }
529 };
530
531 #include "stream/textfilestream.h"
532 #include "xml/xmlparser.h"
533
534 const char* const BUILDMENU_VERSION = "2.0";
535
536 bool build_commands_parse( const char* filename ){
537         TextFileInputStream projectFile( filename );
538         if ( !projectFile.failed() ) {
539                 ProjectXMLConstructor projectConstructor( g_build_project, g_build_tools );
540                 RootXMLConstructor rootConstructor( "project", projectConstructor, BUILDMENU_VERSION );
541                 XMLParser importer( rootConstructor );
542                 XMLStreamParser parser( projectFile );
543                 parser.exportXML( importer );
544
545                 if ( rootConstructor.versionCompatible() ) {
546                         project_verify( g_build_project, g_build_tools );
547
548                         return true;
549                 }
550                 globalErrorStream() << "failed to parse build menu: " << makeQuoted( filename ) << "\n";
551         }
552         return false;
553 }
554
555 void build_commands_clear(){
556         g_build_project.clear();
557         g_build_tools.clear();
558 }
559
560 class BuildXMLExporter
561 {
562 Build& m_build;
563 public:
564 BuildXMLExporter( Build& build ) : m_build( build ){
565 }
566 void exportXML( XMLImporter& importer ){
567         importer << "\n";
568         for ( Build::iterator i = m_build.begin(); i != m_build.end(); ++i )
569         {
570                 StaticElement commandElement( "command" );
571                 importer.pushElement( commandElement );
572                 ( *i ).exportXML( importer );
573                 importer.popElement( commandElement.name() );
574                 importer << "\n";
575         }
576 }
577 };
578
579 class ProjectXMLExporter
580 {
581 Project& m_project;
582 Tools& m_tools;
583 public:
584 ProjectXMLExporter( Project& project, Tools& tools ) : m_project( project ), m_tools( tools ){
585 }
586 void exportXML( XMLImporter& importer ){
587         StaticElement projectElement( "project" );
588         projectElement.insertAttribute( "version", BUILDMENU_VERSION );
589         importer.pushElement( projectElement );
590         importer << "\n";
591
592         for ( Tools::iterator i = m_tools.begin(); i != m_tools.end(); ++i )
593         {
594                 StaticElement toolElement( "var" );
595                 toolElement.insertAttribute( "name", ( *i ).first.c_str() );
596                 importer.pushElement( toolElement );
597                 ( *i ).second.exportXML( importer );
598                 importer.popElement( toolElement.name() );
599                 importer << "\n";
600         }
601         for ( Project::iterator i = m_project.begin(); i != m_project.end(); ++i )
602         {
603                 if ( is_separator( *i ) ) {
604                         StaticElement buildElement( "separator" );
605                         importer.pushElement( buildElement );
606                         importer.popElement( buildElement.name() );
607                         importer << "\n";
608                 }
609                 else
610                 {
611                         StaticElement buildElement( "build" );
612                         buildElement.insertAttribute( "name", ( *i ).first.c_str() );
613                         importer.pushElement( buildElement );
614                         BuildXMLExporter buildExporter( ( *i ).second );
615                         buildExporter.exportXML( importer );
616                         importer.popElement( buildElement.name() );
617                         importer << "\n";
618                 }
619         }
620         importer.popElement( projectElement.name() );
621 }
622 };
623
624 #include "xml/xmlwriter.h"
625
626 void build_commands_write( const char* filename ){
627         TextFileOutputStream projectFile( filename );
628         if ( !projectFile.failed() ) {
629                 XMLStreamWriter writer( projectFile );
630                 ProjectXMLExporter projectExporter( g_build_project, g_build_tools );
631                 writer << "\n";
632                 projectExporter.exportXML( writer );
633                 writer << "\n";
634         }
635 }
636
637
638 #include <gdk/gdkkeysyms.h>
639
640 #include "gtkutil/dialog.h"
641 #include "gtkutil/closure.h"
642 #include "gtkutil/window.h"
643 #include "gtkdlgs.h"
644
645 void Build_refreshMenu( ui::Menu menu );
646
647
648 void BSPCommandList_Construct( ui::ListStore store, Project& project ){
649         store.clear();
650
651         for ( Project::iterator i = project.begin(); i != project.end(); ++i )
652         {
653                 store.append(0, (*i).first.c_str());
654         }
655
656         store.append();
657 }
658
659 class ProjectList
660 {
661 public:
662 Project& m_project;
663 ui::ListStore m_store{ui::null};
664 bool m_changed;
665 ProjectList( Project& project ) : m_project( project ), m_changed( false ){
666 }
667 };
668
669 gboolean project_cell_edited( GtkCellRendererText* cell, gchar* path_string, gchar* new_text, ProjectList* projectList ){
670         Project& project = projectList->m_project;
671
672         GtkTreePath* path = ui::TreePath( path_string );
673
674         ASSERT_MESSAGE( gtk_tree_path_get_depth( path ) == 1, "invalid path length" );
675
676         GtkTreeIter iter;
677         gtk_tree_model_get_iter(projectList->m_store, &iter, path );
678
679         Project::iterator i = Project_find( project, gtk_tree_path_get_indices( path )[0] );
680         if ( i != project.end() ) {
681                 projectList->m_changed = true;
682                 if ( string_empty( new_text ) ) {
683                         project.erase( i );
684                         gtk_list_store_remove( projectList->m_store, &iter );
685                 }
686                 else
687                 {
688                         ( *i ).first = new_text;
689                         gtk_list_store_set( projectList->m_store, &iter, 0, new_text, -1 );
690                 }
691         }
692         else if ( !string_empty( new_text ) ) {
693                 projectList->m_changed = true;
694                 project.push_back( Project::value_type( new_text, Build() ) );
695
696                 gtk_list_store_set( projectList->m_store, &iter, 0, new_text, -1 );
697                 projectList->m_store.append();
698         }
699
700         gtk_tree_path_free( path );
701
702         Build_refreshMenu( g_bsp_menu );
703
704         return FALSE;
705 }
706
707 gboolean project_key_press( ui::Widget widget, GdkEventKey* event, ProjectList* projectList ){
708         Project& project = projectList->m_project;
709
710         if ( event->keyval == GDK_KEY_Delete ) {
711                 GtkTreeSelection* selection = gtk_tree_view_get_selection( GTK_TREE_VIEW( widget ) );
712                 GtkTreeIter iter;
713                 GtkTreeModel* model;
714                 if ( gtk_tree_selection_get_selected( selection, &model, &iter ) ) {
715                         GtkTreePath* path = gtk_tree_model_get_path( model, &iter );
716                         Project::iterator x = Project_find( project, gtk_tree_path_get_indices( path )[0] );
717                         gtk_tree_path_free( path );
718
719                         if ( x != project.end() ) {
720                                 projectList->m_changed = true;
721                                 project.erase( x );
722                                 Build_refreshMenu( g_bsp_menu );
723
724                                 gtk_list_store_remove( projectList->m_store, &iter );
725                         }
726                 }
727         }
728         return FALSE;
729 }
730
731
732 Build* g_current_build = 0;
733
734 gboolean project_selection_changed( GtkTreeSelection* selection, ui::ListStore store ){
735         Project& project = g_build_project;
736
737         store.clear();
738
739         GtkTreeIter iter;
740         GtkTreeModel* model;
741         if ( gtk_tree_selection_get_selected( selection, &model, &iter ) ) {
742                 GtkTreePath* path = gtk_tree_model_get_path( model, &iter );
743                 Project::iterator x = Project_find( project, gtk_tree_path_get_indices( path )[0] );
744                 gtk_tree_path_free( path );
745
746                 if ( x != project.end() ) {
747                         Build& build = ( *x ).second;
748                         g_current_build = &build;
749
750                         for ( Build::iterator i = build.begin(); i != build.end(); ++i )
751                         {
752                                 store.append(0, (*i).c_str());
753                         }
754                         store.append();
755                 }
756                 else
757                 {
758                         g_current_build = 0;
759                 }
760         }
761         else
762         {
763                 g_current_build = 0;
764         }
765
766         return FALSE;
767 }
768
769 gboolean commands_cell_edited( GtkCellRendererText* cell, gchar* path_string, gchar* new_text, ui::ListStore store ){
770         if ( g_current_build == 0 ) {
771                 return FALSE;
772         }
773         Build& build = *g_current_build;
774
775         GtkTreePath* path = ui::TreePath( path_string );
776
777         ASSERT_MESSAGE( gtk_tree_path_get_depth( path ) == 1, "invalid path length" );
778
779         GtkTreeIter iter;
780         gtk_tree_model_get_iter(store, &iter, path );
781
782         Build::iterator i = Build_find( build, gtk_tree_path_get_indices( path )[0] );
783         if ( i != build.end() ) {
784                 g_build_changed = true;
785                 ( *i ).setString( new_text );
786
787                 gtk_list_store_set( store, &iter, 0, new_text, -1 );
788         }
789         else if ( !string_empty( new_text ) ) {
790                 g_build_changed = true;
791                 build.push_back( Build::value_type( VariableString( new_text ) ) );
792
793                 gtk_list_store_set( store, &iter, 0, new_text, -1 );
794
795                 store.append();
796         }
797
798         gtk_tree_path_free( path );
799
800         Build_refreshMenu( g_bsp_menu );
801
802         return FALSE;
803 }
804
805 gboolean commands_key_press( ui::Widget widget, GdkEventKey* event, ui::ListStore store ){
806         if ( g_current_build == 0 ) {
807                 return FALSE;
808         }
809         Build& build = *g_current_build;
810
811         if ( event->keyval == GDK_KEY_Delete ) {
812                 GtkTreeSelection* selection = gtk_tree_view_get_selection( GTK_TREE_VIEW( widget ) );
813                 GtkTreeIter iter;
814                 GtkTreeModel* model;
815                 if ( gtk_tree_selection_get_selected( selection, &model, &iter ) ) {
816                         GtkTreePath* path = gtk_tree_model_get_path( model, &iter );
817                         Build::iterator i = Build_find( build, gtk_tree_path_get_indices( path )[0] );
818                         gtk_tree_path_free( path );
819
820                         if ( i != build.end() ) {
821                                 g_build_changed = true;
822                                 build.erase( i );
823
824                                 gtk_list_store_remove( store, &iter );
825                         }
826                 }
827         }
828         return FALSE;
829 }
830
831
832 ui::Window BuildMenuDialog_construct( ModalDialog& modal, ProjectList& projectList ){
833         ui::Window window = MainFrame_getWindow().create_dialog_window("Build Menu", G_CALLBACK(dialog_delete_callback ), &modal, -1, 400 );
834
835         ui::Widget buildView{ui::null};
836
837         {
838                 auto table1 = create_dialog_table( 2, 2, 4, 4, 4 );
839                 window.add(table1);
840                 {
841                         auto vbox = create_dialog_vbox( 4 );
842             table1.attach(vbox, {1, 2, 0, 1}, {GTK_FILL, GTK_FILL});
843                         {
844                                 auto button = create_dialog_button( "OK", G_CALLBACK( dialog_button_ok ), &modal );
845                                 vbox.pack_start( button, FALSE, FALSE, 0 );
846                         }
847                         {
848                                 auto button = create_dialog_button( "Cancel", G_CALLBACK( dialog_button_cancel ), &modal );
849                                 vbox.pack_start( button, FALSE, FALSE, 0 );
850                         }
851                 }
852                 {
853                         auto frame = create_dialog_frame( "Build menu" );
854             table1.attach(frame, {0, 1, 0, 1});
855                         {
856                                 auto scr = create_scrolled_window( ui::Policy::NEVER, ui::Policy::AUTOMATIC, 4 );
857                                 frame.add(scr);
858
859                                 {
860                                         auto store = ui::ListStore(gtk_list_store_new( 1, G_TYPE_STRING ));
861
862                                         ui::Widget view = ui::TreeView( ui::TreeModel( store ));
863                                         gtk_tree_view_set_headers_visible( GTK_TREE_VIEW( view ), FALSE );
864
865                                         auto renderer = ui::CellRendererText(ui::New);
866                                         object_set_boolean_property( G_OBJECT( renderer ), "editable", TRUE );
867                                         renderer.connect("edited", G_CALLBACK( project_cell_edited ), &projectList );
868
869                                         GtkTreeViewColumn* column = ui::TreeViewColumn( "", renderer, {{"text", 0}} );
870                                         gtk_tree_view_append_column( GTK_TREE_VIEW( view ), column );
871
872                                         GtkTreeSelection* selection = gtk_tree_view_get_selection( GTK_TREE_VIEW( view ) );
873                                         gtk_tree_selection_set_mode( selection, GTK_SELECTION_BROWSE );
874
875                                         view.show();
876
877                                         buildView = view;
878                                         projectList.m_store = store;
879                                         scr.add(view);
880
881                                         view.connect( "key_press_event", G_CALLBACK( project_key_press ), &projectList );
882
883                                         store.unref();
884                                 }
885                         }
886                 }
887                 {
888                         auto frame = create_dialog_frame( "Commandline" );
889             table1.attach(frame, {0, 1, 1, 2});
890                         {
891                                 auto scr = create_scrolled_window( ui::Policy::NEVER, ui::Policy::AUTOMATIC, 4 );
892                                 frame.add(scr);
893
894                                 {
895                                         ui::ListStore store = ui::ListStore(gtk_list_store_new( 1, G_TYPE_STRING ));
896
897                                         ui::Widget view = ui::TreeView(ui::TreeModel( store ));
898                                         gtk_tree_view_set_headers_visible( GTK_TREE_VIEW( view ), FALSE );
899
900                                         auto renderer = ui::CellRendererText(ui::New);
901                                         object_set_boolean_property( G_OBJECT( renderer ), "editable", TRUE );
902                                         renderer.connect( "edited", G_CALLBACK( commands_cell_edited ), store );
903
904                                         GtkTreeViewColumn* column = ui::TreeViewColumn( "", renderer, {{"text", 0}} );
905                                         gtk_tree_view_append_column( GTK_TREE_VIEW( view ), column );
906
907                                         GtkTreeSelection* selection = gtk_tree_view_get_selection( GTK_TREE_VIEW( view ) );
908                                         gtk_tree_selection_set_mode( selection, GTK_SELECTION_BROWSE );
909
910                                         view.show();
911
912                                         scr.add(view);
913
914                                         store.unref();
915
916                                         view.connect( "key_press_event", G_CALLBACK( commands_key_press ), store );
917
918                                         auto sel = ui::TreeSelection(gtk_tree_view_get_selection( GTK_TREE_VIEW( buildView ) ));
919                                         sel.connect( "changed", G_CALLBACK( project_selection_changed ), store );
920                                 }
921                         }
922                 }
923         }
924
925         BSPCommandList_Construct( projectList.m_store, g_build_project );
926
927         return window;
928 }
929
930 namespace
931 {
932 CopiedString g_buildMenu;
933 }
934
935 void LoadBuildMenu();
936
937 void DoBuildMenu(){
938         ModalDialog modal;
939
940         ProjectList projectList( g_build_project );
941
942         ui::Window window = BuildMenuDialog_construct( modal, projectList );
943
944         if ( modal_dialog_show( window, modal ) == eIDCANCEL ) {
945                 build_commands_clear();
946                 LoadBuildMenu();
947
948                 Build_refreshMenu( g_bsp_menu );
949         }
950         else if ( projectList.m_changed ) {
951                 g_build_changed = true;
952         }
953
954         window.destroy();
955 }
956
957
958
959 #include "gtkutil/menu.h"
960 #include "mainframe.h"
961 #include "preferences.h"
962 #include "qe3.h"
963
964 class BuildMenuItem
965 {
966 const char* m_name;
967 public:
968 GtkMenuItem* m_item;
969 BuildMenuItem( const char* name, GtkMenuItem* item )
970         : m_name( name ), m_item( item ){
971 }
972 void run(){
973         RunBSP( m_name );
974 }
975 typedef MemberCaller<BuildMenuItem, &BuildMenuItem::run> RunCaller;
976 };
977
978 typedef std::list<BuildMenuItem> BuildMenuItems;
979 BuildMenuItems g_BuildMenuItems;
980
981
982 ui::Menu g_bsp_menu{ui::null};
983
984 void Build_constructMenu( ui::Menu menu ){
985         for ( Project::iterator i = g_build_project.begin(); i != g_build_project.end(); ++i )
986         {
987                 g_BuildMenuItems.push_back( BuildMenuItem( ( *i ).first.c_str(), 0 ) );
988                 if ( is_separator( *i ) ) {
989                         g_BuildMenuItems.back().m_item = menu_separator( menu );
990                 }
991                 else
992                 {
993                         g_BuildMenuItems.back().m_item = create_menu_item_with_mnemonic( menu, ( *i ).first.c_str(), BuildMenuItem::RunCaller( g_BuildMenuItems.back() ) );
994                 }
995         }
996 }
997
998
999 void Build_refreshMenu( ui::Menu menu ){
1000         for (auto i = g_BuildMenuItems.begin(); i != g_BuildMenuItems.end(); ++i )
1001         {
1002                 menu.remove(ui::MenuItem(i->m_item));
1003         }
1004
1005         g_BuildMenuItems.clear();
1006
1007         Build_constructMenu( menu );
1008 }
1009
1010
1011 void LoadBuildMenu(){
1012         if ( string_empty( g_buildMenu.c_str() ) || !build_commands_parse( g_buildMenu.c_str() ) ) {
1013                 {
1014                         StringOutputStream buffer( 256 );
1015                         buffer << GameToolsPath_get() << "default_build_menu.xml";
1016
1017                         bool success = build_commands_parse( buffer.c_str() );
1018                         ASSERT_MESSAGE( success, "failed to parse default build commands: " << buffer.c_str() );
1019                 }
1020                 {
1021                         StringOutputStream buffer( 256 );
1022                         buffer << SettingsPath_get() << g_pGameDescription->mGameFile.c_str() << "/build_menu.xml";
1023
1024                         g_buildMenu = buffer.c_str();
1025                 }
1026         }
1027 }
1028
1029 void SaveBuildMenu(){
1030         if ( g_build_changed ) {
1031                 g_build_changed = false;
1032                 build_commands_write( g_buildMenu.c_str() );
1033         }
1034 }
1035
1036 #include "preferencesystem.h"
1037 #include "stringio.h"
1038
1039 void BuildMenu_Construct(){
1040         GlobalPreferenceSystem().registerPreference( "BuildMenu", CopiedStringImportStringCaller( g_buildMenu ), CopiedStringExportStringCaller( g_buildMenu ) );
1041         LoadBuildMenu();
1042 }
1043 void BuildMenu_Destroy(){
1044         SaveBuildMenu();
1045 }