File: wxrule.cpp

package info (click to toggle)
golly 2.3-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 10,080 kB
  • sloc: cpp: 41,951; python: 6,339; sh: 3,912; perl: 1,172; java: 49; makefile: 47
file content (1083 lines) | stat: -rw-r--r-- 36,270 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
                        /*** /

This file is part of Golly, a Game of Life Simulator.
Copyright (C) 2011 Andrew Trevorrow and Tomas Rokicki.

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

 Web site:  http://sourceforge.net/projects/golly
 Authors:   rokicki@gmail.com  andrew@trevorrow.com

                        / ***/

#include "wx/wxprec.h"     // for compilers that support precompilation
#ifndef WX_PRECOMP
   #include "wx/wx.h"      // for all others include the necessary headers
#endif

#include "wx/wxhtml.h"     // for wxHtmlWindow

#include "lifealgo.h"

#include "wxgolly.h"       // for wxGetApp, mainptr
#include "wxmain.h"        // for mainptr->...
#include "wxprefs.h"       // for namedrules, gollydir, showalgohelp, etc
#include "wxutils.h"       // for Warning, Fatal, Beep
#include "wxlayer.h"       // for currlayer
#include "wxalgos.h"       // for NumAlgos, CreateNewUniverse, etc
#include "wxrule.h"

// -----------------------------------------------------------------------------

bool ValidRule(wxString& rule)
{
   // return true if given rule is valid in at least one algorithm
   // and convert rule to canonical form
   
   for (int i = 0; i < NumAlgos(); i++) {
      lifealgo* tempalgo = CreateNewUniverse(i);
      const char* err = tempalgo->setrule( rule.mb_str(wxConvLocal) );
      if (!err) {
         // convert rule to canonical form
         rule = wxString(tempalgo->getrule(),wxConvLocal);
         delete tempalgo;
         return true;
      }
      delete tempalgo;
   }
   
   return false;
}

// -----------------------------------------------------------------------------

wxString GetRuleName(const wxString& rulestring)
{
   // search namedrules array for matching rule
   wxString rulename;
   
   // check for a suffix like ":T100,200"
   wxString ruleprefix = rulestring;
   wxString rulesuffix = wxEmptyString;
   if ( ruleprefix.Find(':') >= 0 ) {
      ruleprefix = ruleprefix.BeforeFirst(':');
      rulesuffix = wxT(":") + rulestring.AfterFirst(':');
   }

   // first look for given rulestring in namedrules; if user has created a name like
   // "Life on torus" for "B3/S23:T100,200" then this will find that name
   for (size_t i = 0; i < namedrules.GetCount(); i++) {
      wxString thisrule = namedrules[i].AfterFirst('|');       // rule is after '|'
      if ( rulestring.IsSameAs(thisrule,false) ) {
         rulename = namedrules[i].BeforeFirst('|');            // name is before '|'
         if ( rulesuffix.Length() > 0 ) {
            // still append suffix so user sees "Life on torus:T100,200"
            rulename += rulesuffix;
         }
         return rulename;
      }
   }

   if ( rulesuffix.Length() > 0 ) {
      // look for ruleprefix in namedrules; if there is no explicit name for
      // "B3/S23:T100,200" then this will find "Life" and user will see "Life:T100,200"
      for (size_t i = 0; i < namedrules.GetCount(); i++) {
         wxString thisrule = namedrules[i].AfterFirst('|');    // rule is after '|'
         if ( ruleprefix.IsSameAs(thisrule,false) ) {
            rulename = namedrules[i].BeforeFirst('|');         // name is before '|'
            rulename += rulesuffix;
            return rulename;
         }
      }
   }
   
   // given rulestring has not been named
   rulename = rulestring;
   return rulename;
}

// -----------------------------------------------------------------------------

// globals used in AlgoHelp and RuleDialog classes:

static wxTextCtrl* ruletext;        // text box for user to type in rule
static wxStaticText* statusline;    // status line at bottom of dialog

// -----------------------------------------------------------------------------

// define a html window for displaying algo help:

class AlgoHelp : public wxHtmlWindow
{
public:
   AlgoHelp(wxWindow* parent, wxWindowID id, const wxPoint& pos,
            const wxSize& size, long style)
      : wxHtmlWindow(parent, id, pos, size, style) {
      editlink = false;
      linkrect = wxRect(0,0,0,0);
   }

   virtual void OnLinkClicked(const wxHtmlLinkInfo& link);
   virtual void OnCellMouseHover(wxHtmlCell* cell, wxCoord x, wxCoord y);

   void ClearStatus();
   void DisplayFile(const wxString& filepath);
   void SetFontSizes(int size);
   
   bool editlink;       // open clicked file in editor?

private:
   void OnKeyUp(wxKeyEvent& event);
   void OnSize(wxSizeEvent& event);
   void OnMouseMotion(wxMouseEvent& event);
   void OnMouseLeave(wxMouseEvent& event);
   void OnMouseDown(wxMouseEvent& event);

   wxRect linkrect;     // rect for cell containing link

   DECLARE_EVENT_TABLE()
};

BEGIN_EVENT_TABLE(AlgoHelp, wxHtmlWindow)
#ifdef __WXGTK__
   // don't call OnKeyUp in wxGTK because for some reason it prevents
   // copied help text being pasted into the rule box
#else
   EVT_KEY_UP        (AlgoHelp::OnKeyUp)
#endif
#ifdef __WXMAC__
   // on the Mac OnKeyUp is also called on a key-down event because the
   // key-up handler gets a key code of 400 if cmd-C is pressed quickly
   EVT_KEY_DOWN      (AlgoHelp::OnKeyUp)
#endif
   EVT_MOTION        (AlgoHelp::OnMouseMotion)
   EVT_ENTER_WINDOW  (AlgoHelp::OnMouseMotion)
   EVT_LEAVE_WINDOW  (AlgoHelp::OnMouseLeave)
   EVT_LEFT_DOWN     (AlgoHelp::OnMouseDown)
   EVT_RIGHT_DOWN    (AlgoHelp::OnMouseDown)
   EVT_SIZE          (AlgoHelp::OnSize)
END_EVENT_TABLE()

// -----------------------------------------------------------------------------

void AlgoHelp::OnLinkClicked(const wxHtmlLinkInfo& link)
{
   wxString url = link.GetHref();
   if ( url.StartsWith(wxT("http:")) || url.StartsWith(wxT("mailto:")) ) {
      // pass http/mailto URL to user's preferred browser/emailer
      #ifdef __WXMAC__
         // best to use the Mac OS X open command
         if ( wxExecute(wxT("open ") + url, wxEXEC_ASYNC) == -1 )
            Warning(_("Could not open URL!"));
      #elif defined(__WXGTK__)
         // wxLaunchDefaultBrowser is not reliable on Linux/GTK so we call gnome-open
         if ( wxExecute(wxT("gnome-open ") + url, wxEXEC_ASYNC) == -1 )
            Warning(_("Could not open URL!"));
      #else
         if ( !wxLaunchDefaultBrowser(url) )
            Warning(_("Could not launch browser!"));
      #endif

   } else if ( url.StartsWith(wxT("rule:")) ) {
      // copy clicked rule into rule box
      ruletext->SetValue( url.AfterFirst(':') );
      ruletext->SetFocus();
      ruletext->SetSelection(-1,-1);

   } else if ( url.StartsWith(wxT("open:")) ) {
      // open clicked pattern/script
      wxString clickedfile = url.AfterFirst(':');
      #ifdef __WXMSW__
         clickedfile.Replace(wxT("/"), wxT("\\"));
      #endif
      wxFileName fname(clickedfile);
      if (!fname.IsAbsolute()) clickedfile = gollydir + clickedfile;
      if (editlink) {
         mainptr->EditFile(clickedfile);
      } else {
         mainptr->pendingfiles.Add(clickedfile);   // next OnIdle will call OpenFile
         // send OK event to close dialog
         wxCommandEvent okevent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK);
         wxWindow* buttwin = GetParent()->FindWindow(wxID_OK);
         if (buttwin) {
            okevent.SetEventObject(buttwin);
            buttwin->GetEventHandler()->ProcessEvent(okevent);
         }
      }

   } else {
      // assume it's a link to a local target or another help file
      DisplayFile(url);
   }
}

// -----------------------------------------------------------------------------

void AlgoHelp::OnCellMouseHover(wxHtmlCell* cell, wxCoord x, wxCoord y)
{
   if (cell) {
      wxHtmlLinkInfo* link = cell->GetLink(x,y);
      if (link) {
         wxString href = link->GetHref();
         href.Replace(wxT("&"), wxT("&&"));
         statusline->SetLabel(href);
         wxPoint pt = ScreenToClient( wxGetMousePosition() );
         linkrect = wxRect(pt.x-x, pt.y-y, cell->GetWidth(), cell->GetHeight());
      } else {
         ClearStatus();
      }
   }
}

// -----------------------------------------------------------------------------

void AlgoHelp::OnMouseMotion(wxMouseEvent& event)
{
   if (!linkrect.IsEmpty()) {
      int x = event.GetX();
      int y = event.GetY();
      if (!linkrect.Contains(x,y)) ClearStatus();
   }
   event.Skip();
}

// -----------------------------------------------------------------------------

void AlgoHelp::OnMouseLeave(wxMouseEvent& event)
{
   ClearStatus();
   event.Skip();
}

// -----------------------------------------------------------------------------

void AlgoHelp::ClearStatus()
{
   statusline->SetLabel(wxEmptyString);
   linkrect = wxRect(0,0,0,0);
}

// -----------------------------------------------------------------------------

#if defined(__WXMAC__) && wxCHECK_VERSION(2,9,0)
   // wxMOD_CONTROL has been changed to mean Command key down (sheesh!)
   #define wxMOD_CONTROL wxMOD_RAW_CONTROL
   #define ControlDown RawControlDown
#endif

void AlgoHelp::OnMouseDown(wxMouseEvent& event)
{
   // set flag so ctrl/right-clicked file can be opened in editor
   // (this is consistent with how we handle clicks in pattern/script pane)
   editlink = event.ControlDown() || event.RightDown();
   event.Skip();
}

// -----------------------------------------------------------------------------

void AlgoHelp::DisplayFile(const wxString& filepath)
{
   if ( filepath.IsEmpty() ) {
      wxString newrule = ruletext->GetValue();
      wxString contents =
      wxT("<html><body bgcolor=\"#FFFFCE\">")
      wxT("<p>The given rule is not valid in any algorithm.");
      if (newrule.Contains(wxT(":"))) {
         // assume user is trying to specify a bounded grid
         contents += wxT("<p>The syntax for a bounded grid is described ");
         contents += wxT("<a href=\"Help/bounded.html\">here</a>.");
      }
      contents += wxT("</body></html>");
      SetPage(contents);

   } else if ( filepath.StartsWith(gollydir) &&
               !wxFileName::FileExists(filepath) ) {
      wxString contents =
      wxT("<html><body bgcolor=\"#FFFFCE\">")
      wxT("<p>There is no help available for this algorithm.")
      wxT("</body></html>");
      SetPage(contents);

   } else {
      LoadPage(filepath);
   }
}

// -----------------------------------------------------------------------------

// we have to use a key-up handler otherwise wxHtmlWindow's key-up handler
// gets called which detects cmd/ctrl-C and clobbers our clipboard fix
void AlgoHelp::OnKeyUp(wxKeyEvent& event)
{
   int key = event.GetKeyCode();
   if (event.CmdDown()) {
      // let cmd-A select all text
      if (key == 'A') {
         SelectAll();
         event.Skip(false);
         return;
      }
      #ifdef __WXMAC__
         // let cmd-W close dialog
         if (key == 'W') {
            GetParent()->Close(true);
            event.Skip(false);
            return;
         }
      #endif
   }
   if ( event.CmdDown() || event.AltDown() ) {
      if ( key == 'C' ) {
         // copy any selected text to the clipboard
         wxString text = SelectionToText();
         if ( text.Length() > 0 ) {
            // remove any leading/trailing white space
            while (text.GetChar(0) <= wxChar(' ')) {
               text = text.Mid(1);
            }
            while (text.GetChar(text.Length()-1) <= wxChar(' ')) {
               text.Truncate(text.Length()-1);
            }
            mainptr->CopyTextToClipboard(text);
            // don't call wxHtmlWindow's default key-up handler
            event.Skip(false);
            return;
         }
      }
   }
   event.Skip();
}

// -----------------------------------------------------------------------------

void AlgoHelp::OnSize(wxSizeEvent& event)
{
   // avoid scroll position being reset to top when wxHtmlWindow is resized
   int x, y;
   GetViewStart(&x, &y);         // save current position

   wxHtmlWindow::OnSize(event);

   wxString currpage = GetOpenedPage();
   if ( !currpage.IsEmpty() ) {
      DisplayFile(currpage);     // reload page
      Scroll(x, y);              // scroll to old position
   }
   
   // prevent wxHtmlWindow::OnSize being called again
   event.Skip(false);
}

// -----------------------------------------------------------------------------

void AlgoHelp::SetFontSizes(int size)
{
   // set font sizes for <FONT SIZE=-2> to <FONT SIZE=+4>
   int f_sizes[7];
   f_sizes[0] = int(size * 0.6);
   f_sizes[1] = int(size * 0.8);
   f_sizes[2] = size;
   f_sizes[3] = int(size * 1.2);
   f_sizes[4] = int(size * 1.4);
   f_sizes[5] = int(size * 1.6);
   f_sizes[6] = int(size * 1.8);
   #ifdef __WXOSX_COCOA__
      SetFonts(wxT("Lucida Grande"), wxT("Monaco"), f_sizes);
   #else
      SetFonts(wxEmptyString, wxEmptyString, f_sizes);
   #endif
}

// -----------------------------------------------------------------------------

const wxString UNKNOWN = _("UNKNOWN");    // unknown algorithm
const wxString UNNAMED = _("UNNAMED");    // unnamed rule

const int HGAP = 12;
const int BIGVGAP = 12;

#if defined(__WXMAC__) && wxCHECK_VERSION(2,8,0) && !wxCHECK_VERSION(2,9,0)
   // fix wxALIGN_CENTER_VERTICAL bug in wxMac 2.8.x;
   // only happens when a wxStaticText/wxButton box is next to a wxChoice box
   #define FIX_ALIGN_BUG wxBOTTOM,4
#else
   #define FIX_ALIGN_BUG wxALL,0
#endif

// -----------------------------------------------------------------------------

// define a modal dialog for changing the current rule

class RuleDialog : public wxDialog
{
public:
   RuleDialog(wxWindow* parent);
   ~RuleDialog() {
      delete ruletext;
      delete statusline;
   }
   
   virtual bool TransferDataFromWindow();    // called when user hits OK

private:
   enum {
      // control ids
      RULE_ALGO = wxID_HIGHEST + 1,
      RULE_NAME,
      RULE_TEXT,
      RULE_ADD_BUTT,
      RULE_ADD_TEXT,
      RULE_DEL_BUTT
   };

   void CreateControls();     // initialize all the controls
   void UpdateAlgo();         // update algochoice depending on rule
   void UpdateName();         // update namechoice depending on rule
   void UpdateHelp();         // update algo help

   AlgoHelp* htmlwin;         // html window for displaying algo help
   wxTextCtrl* addtext;       // text box for user to type in name of rule
   wxChoice* algochoice;      // lists the known algorithms but can have one
                              // more item appended (UNKNOWN)
   wxChoice* namechoice;      // kept in sync with namedrules but can have one
                              // more item appended (UNNAMED)
   int algoindex;             // current algochoice selection
   int startalgo;             // look for a valid rule starting with this algo
   int nameindex;             // current namechoice selection
   bool ignore_text_change;   // prevent OnRuleTextChanged doing anything?
   bool expanded;             // help button has expanded dialog?
   wxRect minrect;            // window rect for unexpanded dialog
   
   // event handlers
   void OnRuleTextChanged(wxCommandEvent& event);
   void OnChooseAlgo(wxCommandEvent& event);
   void OnChooseName(wxCommandEvent& event);
   void OnHelpButton(wxCommandEvent& event);
   void OnAddName(wxCommandEvent& event);
   void OnDeleteName(wxCommandEvent& event);
   void OnUpdateAdd(wxUpdateUIEvent& event);
   void OnUpdateDelete(wxUpdateUIEvent& event);
   void OnSize(wxSizeEvent& event);
   void OnMove(wxMoveEvent& event);

   DECLARE_EVENT_TABLE()
};

BEGIN_EVENT_TABLE(RuleDialog, wxDialog)
   EVT_CHOICE     (RULE_ALGO,       RuleDialog::OnChooseAlgo)
   EVT_CHOICE     (RULE_NAME,       RuleDialog::OnChooseName)
   EVT_TEXT       (RULE_TEXT,       RuleDialog::OnRuleTextChanged)
   EVT_BUTTON     (wxID_HELP,       RuleDialog::OnHelpButton)
   EVT_BUTTON     (RULE_ADD_BUTT,   RuleDialog::OnAddName)
   EVT_BUTTON     (RULE_DEL_BUTT,   RuleDialog::OnDeleteName)
   EVT_UPDATE_UI  (RULE_ADD_BUTT,   RuleDialog::OnUpdateAdd)
   EVT_UPDATE_UI  (RULE_DEL_BUTT,   RuleDialog::OnUpdateDelete)
   EVT_SIZE       (                 RuleDialog::OnSize)
   EVT_MOVE       (                 RuleDialog::OnMove)
END_EVENT_TABLE()

// -----------------------------------------------------------------------------

RuleDialog::RuleDialog(wxWindow* parent)
{
   Create(parent, wxID_ANY, _("Set Rule"), wxPoint(rulex,ruley), wxDefaultSize,
          wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER);
   
   expanded = false;    // tested in RuleDialog::OnSize

   htmlwin = new AlgoHelp(this, wxID_ANY,
                          // specify small size to avoid clipping scroll bar on resize
                          wxDefaultPosition, wxSize(30,30),
                          wxHW_DEFAULT_STYLE | wxSUNKEN_BORDER);
   if (!htmlwin) Fatal(_("Could not create algo help window!"));
   htmlwin->SetBorders(4);
   htmlwin->SetFontSizes(helpfontsize);
   htmlwin->Show(false);

   ignore_text_change = true;
   CreateControls();
   ignore_text_change = false;
   
   // dialog location is set to rulex,ruley
   // Centre();

   minrect = GetRect();
   // don't allow resizing when dialog isn't expanded
   SetMaxSize( wxSize(minrect.width,minrect.height) );

   // select all of rule text
   ruletext->SetFocus();
   ruletext->SetSelection(-1,-1);
   
   if (showalgohelp) {
      // send help button event to expand dialog
      wxCommandEvent buttevent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_HELP);
      wxWindow* buttwin = FindWindow(wxID_HELP);
      if (buttwin) {
         buttevent.SetEventObject(buttwin);
         buttwin->GetEventHandler()->ProcessEvent(buttevent);
      }
   }
}

// -----------------------------------------------------------------------------

void RuleDialog::CreateControls()
{
   wxStaticText* textlabel = new wxStaticText(this, wxID_STATIC, _("Enter a new rule:"));
   wxStaticText* namelabel = new wxStaticText(this, wxID_STATIC, _("Or select a named rule:"));

   wxButton* helpbutt = new wxButton(this, wxID_HELP, wxEmptyString);
   wxButton* delbutt = new wxButton(this, RULE_DEL_BUTT, _("Delete"));
   wxButton* addbutt = new wxButton(this, RULE_ADD_BUTT, _("Add"));
   
   // create a choice menu to select algo
   wxArrayString algoarray;
   for (int i = 0; i < NumAlgos(); i++) {
      algoarray.Add( wxString(GetAlgoName(i),wxConvLocal) );
   }
   algochoice = new wxChoice(this, RULE_ALGO, wxDefaultPosition, wxDefaultSize, algoarray);
   algoindex = currlayer->algtype;
   startalgo = currlayer->algtype;
   algochoice->SetSelection(algoindex);

   wxBoxSizer* hbox0 = new wxBoxSizer(wxHORIZONTAL);
   wxBoxSizer* algolabel = new wxBoxSizer(wxHORIZONTAL);
   algolabel->Add(new wxStaticText(this, wxID_STATIC, _("Algorithm:")), 0, FIX_ALIGN_BUG);
   hbox0->Add(algolabel, 0, wxALIGN_CENTER_VERTICAL, 0);
   hbox0->Add(algochoice, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, 6);
   hbox0->AddSpacer(HGAP);
   wxBoxSizer* helpbox = new wxBoxSizer(wxHORIZONTAL);
   helpbox->Add(helpbutt, 0, FIX_ALIGN_BUG);
   hbox0->Add(helpbox, 0, wxALIGN_CENTER_VERTICAL, 0);
   
   int minwidth = 250;
   int algowd = hbox0->GetMinSize().GetWidth();
   if (algowd > minwidth) minwidth = algowd;

   // create status line for showing link info
   statusline = new wxStaticText(this, wxID_STATIC, wxEmptyString);
   #ifdef __WXMAC__
      statusline->SetWindowVariant(wxWINDOW_VARIANT_SMALL);
   #endif
   
   // create text box for entering new rule
   ruletext = new wxTextCtrl(this, RULE_TEXT,
                             wxString(currlayer->algo->getrule(),wxConvLocal),
                             wxDefaultPosition, wxSize(minwidth,wxDefaultCoord));
   
   // create a choice menu to select named rule
   wxArrayString namearray;
   for (size_t i=0; i<namedrules.GetCount(); i++) {
      // remove "|..." part
      wxString name = namedrules[i].BeforeFirst('|');
      namearray.Add(name);
   }
   namechoice = new wxChoice(this, RULE_NAME,
                             wxDefaultPosition, wxSize(160,wxDefaultCoord), namearray);
   nameindex = -1;
   UpdateName();        // careful -- this uses ruletext

   addtext = new wxTextCtrl(this, RULE_ADD_TEXT, wxEmptyString,
                            wxDefaultPosition, wxSize(160,wxDefaultCoord));

   wxBoxSizer* hbox1 = new wxBoxSizer(wxHORIZONTAL);
   hbox1->Add(namechoice, 0, wxALIGN_CENTER_VERTICAL, 0);
   hbox1->AddSpacer(HGAP);
   wxBoxSizer* delbox = new wxBoxSizer(wxHORIZONTAL);
   delbox->Add(delbutt, 0, FIX_ALIGN_BUG);
   hbox1->Add(delbox, 0, wxALIGN_CENTER_VERTICAL, 0);

   wxBoxSizer* hbox2 = new wxBoxSizer(wxHORIZONTAL);
   hbox2->Add(addtext, 0, wxALIGN_CENTER_VERTICAL, 0);
   hbox2->AddSpacer(HGAP);
   hbox2->Add(addbutt, 0, wxALIGN_CENTER_VERTICAL, 0);

   wxSizer* stdbutts = CreateButtonSizer(wxOK | wxCANCEL);
   wxBoxSizer* vbox = new wxBoxSizer(wxVERTICAL);
   // can we avoid these fudges???
   #ifdef __WXMAC__
      minwidth += 24;
   #elif defined(__WXMSW__)
      minwidth += 16;
   #else
      minwidth += 12;
   #endif
   vbox->Add(minwidth, 0, 0);
   vbox->Add(stdbutts, 1, wxALIGN_RIGHT, 0);

   wxBoxSizer* topSizer = new wxBoxSizer(wxVERTICAL);
   topSizer->AddSpacer(BIGVGAP);
   topSizer->Add(hbox0, 0, wxLEFT | wxRIGHT, HGAP);
   topSizer->AddSpacer(BIGVGAP);
   topSizer->Add(textlabel, 0, wxLEFT | wxRIGHT, HGAP);
   topSizer->AddSpacer(10);
   topSizer->Add(ruletext, 0, wxLEFT | wxRIGHT, HGAP);
   topSizer->AddSpacer(BIGVGAP);
   topSizer->Add(namelabel, 0, wxLEFT | wxRIGHT, HGAP);
   topSizer->AddSpacer(6);
   topSizer->Add(hbox1, 0, wxLEFT | wxRIGHT, HGAP);
   topSizer->AddSpacer(BIGVGAP);
   topSizer->Add(hbox2, 0, wxLEFT | wxRIGHT, HGAP);
   topSizer->AddSpacer(BIGVGAP);
   topSizer->Add(vbox, 0, wxTOP | wxBOTTOM, 10);
   
   SetSizer(topSizer);
   topSizer->SetSizeHints(this);    // calls Fit
}

// -----------------------------------------------------------------------------

void RuleDialog::UpdateAlgo()
{
   // may need to change selected algo depending on current rule text
   lifealgo* tempalgo;
   const char* err;
   wxString newrule = ruletext->GetValue();
   if (newrule.IsEmpty()) newrule = wxT("B3/S23");
   
   // first try new rule in starting algo (NOT necessarily the currently selected algo);
   // this ensures that typing in a rule achieves the same result as pasting a rule
   tempalgo = CreateNewUniverse(startalgo);
   err = tempalgo->setrule( newrule.mb_str(wxConvLocal) );
   delete tempalgo;
   if (!err) {
      if (startalgo != algoindex) {
         if (algoindex >= NumAlgos()) {
            // remove UNKNOWN item from end of algochoice
            algochoice->Delete( algochoice->GetCount() - 1 );
         }
         algoindex = startalgo;
         algochoice->SetSelection(algoindex);
         UpdateHelp();
      }
      return;
   }
   
   // now try new rule in all the other algos
   int newindex;
   for (newindex = 0; newindex < NumAlgos(); newindex++) {
      if (newindex != startalgo) {
         tempalgo = CreateNewUniverse(newindex);
         err = tempalgo->setrule( newrule.mb_str(wxConvLocal) );
         delete tempalgo;
         if (!err) {
            if (newindex != algoindex) {
               if (algoindex >= NumAlgos()) {
                  // remove UNKNOWN item from end of algochoice
                  algochoice->Delete( algochoice->GetCount() - 1 );
               }
               algoindex = newindex;
               algochoice->SetSelection(algoindex);
               UpdateHelp();
            }
            return;
         }
      }
   }

   // get here if new rule is not valid in any algo
   if (algoindex < NumAlgos()) {
      // append UNKNOWN item and select it
      algochoice->Append(UNKNOWN);
      algoindex = NumAlgos();
      algochoice->SetSelection(algoindex);
      UpdateHelp();
   }
}

// -----------------------------------------------------------------------------

void RuleDialog::UpdateHelp()
{
   if (expanded) {
      if (algoindex < NumAlgos()) {
         // display Help/Algorithms/algoname.html
         wxString filepath = gollydir + wxT("Help");
         filepath += wxFILE_SEP_PATH;
         filepath += wxT("Algorithms");
         filepath += wxFILE_SEP_PATH;
         filepath += wxString(GetAlgoName(algoindex),wxConvLocal);
         filepath += wxT(".html");
         htmlwin->DisplayFile(filepath);
      } else {
         // UNKNOWN algo
         htmlwin->DisplayFile(wxEmptyString);
      }
   }
}

// -----------------------------------------------------------------------------

void RuleDialog::UpdateName()
{
   // may need to change named rule depending on current rule text
   int newindex;
   wxString newrule = ruletext->GetValue();
   if ( newrule.IsEmpty() ) {
      // empty string is a quick way to restore normal Life
      newindex = 0;
   } else {
      // search namedrules array for matching rule
      newindex = -1;
      for (size_t i=0; i<namedrules.GetCount(); i++) {
         // extract rule after '|'
         wxString thisrule = namedrules[i].AfterFirst('|');
         if ( newrule.IsSameAs(thisrule,false) ) {
            newindex = i;
            break;
         }
      }
   }
   if (newindex >= 0) {
      // matching rule found so remove UNNAMED item if it exists
      // use (int) twice to avoid warnings on wx 2.6.x/2.7
      if ( (int) namechoice->GetCount() > (int) namedrules.GetCount() ) {
         namechoice->Delete( namechoice->GetCount() - 1 );
      }
   } else {
      // no match found so use index of UNNAMED item,
      // appending it if it doesn't exist;
      // use (int) twice to avoid warnings on wx 2.6.x/2.7
      if ( (int) namechoice->GetCount() == (int) namedrules.GetCount() ) {
         namechoice->Append(UNNAMED);
      }
      newindex = namechoice->GetCount() - 1;
   }
   if (nameindex != newindex) {
      nameindex = newindex;
      namechoice->SetSelection(nameindex);
   }
}

// -----------------------------------------------------------------------------

void RuleDialog::OnRuleTextChanged(wxCommandEvent& WXUNUSED(event))
{
   if (ignore_text_change) return;
   UpdateName();
   UpdateAlgo();
   
   // check for spaces
   wxString newrule = ruletext->GetValue();
   if (newrule.Contains(wxT(" "))) {
      Warning(_("Spaces are not allowed in rule strings."));
      newrule.Replace(wxT(" "), wxEmptyString);
      ruletext->SetValue(newrule);
      ruletext->SetFocus();
   }
}

// -----------------------------------------------------------------------------

void RuleDialog::OnChooseAlgo(wxCommandEvent& event)
{
   int i = event.GetSelection();
   if (i >= 0 && i < NumAlgos() && i != algoindex) {
      int oldindex = algoindex;
      algoindex = i;
      startalgo = i;    // user has explicitly changed the preferred algo
      
      // check if the current rule is valid in newly selected algo
      wxString thisrule = ruletext->GetValue();
      if (thisrule.IsEmpty()) thisrule = wxT("B3/S23");
      lifealgo* tempalgo = CreateNewUniverse(algoindex);
      const char* err = tempalgo->setrule( thisrule.mb_str(wxConvLocal) );
      if (err) {
         // rule is not valid so change rule text to selected algo's default rule
         wxString defrule = wxString(tempalgo->DefaultRule(), wxConvLocal);
         if (oldindex < NumAlgos() && thisrule.Find(':') >= 0) {
            // preserve valid topology so we can do things like switch from
            // "LifeHistory:T30,20" in RuleTable to "B3/S23:T30,20" in QuickLife
            if (defrule.Find(':') >= 0) {
               // default rule shouldn't have a suffix but play safe and remove it
               defrule = defrule.BeforeFirst(':');
            }
            defrule += wxT(":");
            defrule += thisrule.AfterFirst(':');
         }
         ignore_text_change = true;
         ruletext->SetValue(defrule);
         ruletext->SetFocus();
         ruletext->SetSelection(-1,-1);
         ignore_text_change = false;
         if (oldindex >= NumAlgos()) {
            // remove UNKNOWN item from end of algochoice
            algochoice->Delete( algochoice->GetCount() - 1 );
         }
         UpdateName();
      } else {
         // rule is valid
         if (oldindex >= NumAlgos()) {
            Warning(_("Bug detected in OnChooseAlgo!"));
         }
      }
      delete tempalgo;
      
      UpdateHelp();
   }
}

// -----------------------------------------------------------------------------

void RuleDialog::OnChooseName(wxCommandEvent& event)
{
   int i = event.GetSelection();
   if (i == nameindex) return;
   
   // update rule text based on chosen name
   nameindex = i;
   if ( nameindex == (int) namedrules.GetCount() ) {
      Warning(_("Bug detected in OnChooseName!"));
      UpdateAlgo();
      return;
   }
   
   // remove UNNAMED item if it exists;
   // use (int) twice to avoid warnings in wx 2.6.x/2.7
   if ( (int) namechoice->GetCount() > (int) namedrules.GetCount() ) {
      namechoice->Delete( namechoice->GetCount() - 1 );
   }

   wxString rule = namedrules[nameindex].AfterFirst('|');
   ignore_text_change = true;
   ruletext->SetValue(rule);
   ruletext->SetFocus();
   ruletext->SetSelection(-1,-1);
   ignore_text_change = false;

   UpdateAlgo();
}

// -----------------------------------------------------------------------------

void RuleDialog::OnAddName(wxCommandEvent& WXUNUSED(event))
{
   if ( nameindex < (int) namedrules.GetCount() ) {
      // OnUpdateAdd should prevent this but play safe
      Beep();
      return;
   }
   
   // validate new rule and convert to canonical form
   wxString newrule = ruletext->GetValue();
   if (!ValidRule(newrule)) {
      Warning(_("The new rule is not valid in any algorithm."));
      ruletext->SetFocus();
      ruletext->SetSelection(-1,-1);
      return;
   }
      
   // validate new name
   wxString newname = addtext->GetValue();
   if ( newname.IsEmpty() ) {
      Warning(_("Type in a name for the new rule."));
      addtext->SetFocus();
      return;
   } else if ( newname.Find('|') >= 0 ) {
      Warning(_("Sorry, but rule names must not contain \"|\"."));
      addtext->SetFocus();
      addtext->SetSelection(-1,-1);
      return;
   } else if ( newname == UNNAMED ) {
      Warning(_("You can't use that name smarty pants."));
      addtext->SetFocus();
      addtext->SetSelection(-1,-1);
      return;
   } else if ( namechoice->FindString(newname) != wxNOT_FOUND ) {
      Warning(_("That name is already used for another rule."));
      addtext->SetFocus();
      addtext->SetSelection(-1,-1);
      return;
   }
   
   // replace UNNAMED with new name
   namechoice->Delete( namechoice->GetCount() - 1 );
   namechoice->Append( newname );
   
   // append new name and rule to namedrules
   newname += '|';
   newname += newrule;
   namedrules.Add(newname);
   
   // force a change to newly appended item
   nameindex = -1;
   UpdateName();
}

// -----------------------------------------------------------------------------

void RuleDialog::OnDeleteName(wxCommandEvent& WXUNUSED(event))
{
   if ( nameindex <= 0 || nameindex >= (int) namedrules.GetCount() ) {
      // OnUpdateDelete should prevent this but play safe
      Beep();
      return;
   }
   
   // remove current name
   namechoice->Delete(nameindex);
   namedrules.RemoveAt((size_t) nameindex);
   
   // force a change to UNNAMED item
   nameindex = -1;
   UpdateName();
}

// -----------------------------------------------------------------------------

void RuleDialog::OnUpdateAdd(wxUpdateUIEvent& event)
{
   // Add button is only enabled if UNNAMED item is selected
   event.Enable( nameindex == (int) namedrules.GetCount() );
}

// -----------------------------------------------------------------------------

void RuleDialog::OnUpdateDelete(wxUpdateUIEvent& event)
{
   // Delete button is only enabled if a non-Life named rule is selected
   event.Enable( nameindex > 0 && nameindex < (int) namedrules.GetCount() );
}

// -----------------------------------------------------------------------------

void RuleDialog::OnHelpButton(wxCommandEvent& WXUNUSED(event))
{
   wxRect r = GetRect();
   expanded = !expanded;
   showalgohelp = expanded;
   if (expanded) {
      int wd, ht;
      GetClientSize(&wd, &ht);
      wxRect htmlrect(minrect.width, 10, ruleexwd - 10, ht + ruleexht - 30);
      htmlwin->SetSize(htmlrect);
      r.width = minrect.width + ruleexwd;
      r.height = minrect.height + ruleexht;
      // call SetMinSize below (AFTER SetSize call)
      SetMaxSize( wxSize(-1,-1) );
   } else {
      wxWindow* focus = FindFocus();
      if (focus != ruletext && focus != addtext) {
         ruletext->SetFocus();
      }
      r.width = minrect.width;
      r.height = minrect.height;
      SetMinSize( wxSize(minrect.width,minrect.height) );
      SetMaxSize( wxSize(minrect.width,minrect.height) );
   }
   
   UpdateHelp();
   htmlwin->Show(expanded);
   SetSize(r);
   
   if (expanded) {
      SetMinSize( wxSize(minrect.width+100,minrect.height) );
   }
}

// -----------------------------------------------------------------------------

void RuleDialog::OnSize(wxSizeEvent& event)
{
   if (expanded) {
      // resize html window
      int wd, ht;
      GetClientSize(&wd, &ht);
      wxRect r = GetRect();
      ruleexwd = r.width - minrect.width;
      ruleexht = r.height - minrect.height;
      wxRect htmlrect(minrect.width, 10, wd - minrect.width - 10, ht - 30);
      htmlwin->SetSize(htmlrect);
      // position status line under bottom left corner
      statusline->Move(htmlrect.GetLeft(), htmlrect.GetBottom() + 4);
   }
   event.Skip();
}

// -----------------------------------------------------------------------------

void RuleDialog::OnMove(wxMoveEvent& event)
{
   // save current location for later use in SavePrefs
   /*  sigh... wxMac doesn't return correct position
   wxPoint pt = event.GetPosition();
   rulex = pt.x;
   ruley = pt.y;
   */
   wxRect r = GetRect();
   rulex = r.x;
   ruley = r.y;
   
   event.Skip();
}

// -----------------------------------------------------------------------------

bool RuleDialog::TransferDataFromWindow()
{
   // get and validate new rule
   wxString newrule = ruletext->GetValue();
   if (newrule.IsEmpty()) newrule = wxT("B3/S23");
   
   if (algoindex >= NumAlgos()) {
      Warning(_("The new rule is not valid in any algorithm."));
      ruletext->SetFocus();
      ruletext->SetSelection(-1,-1);
      return false;
   }
   
   if (algoindex == currlayer->algtype) {
      // check if new rule is still valid in current algorithm
      const char* err = currlayer->algo->setrule( newrule.mb_str(wxConvLocal) );
      if (err) {
         // this can happen if the rule's table/tree file was deleted,
         // or was edited and some sort of error introduced
         Warning(_("This rule is no longer valid!"));
         ruletext->SetFocus();
         ruletext->SetSelection(-1,-1);
         return false;
      } else {
         return true;
      }
   } else {
      // change the current algorithm and switch to the new rule
      // (if the new rule is invalid then the algo's default rule will be used)
      mainptr->ChangeAlgorithm(algoindex, newrule);
      return true;
   }
}

// -----------------------------------------------------------------------------

bool ChangeRule()
{
   wxArrayString oldnames = namedrules;
   wxString oldrule = wxString(currlayer->algo->getrule(),wxConvLocal);

   RuleDialog dialog( wxGetApp().GetTopWindow() );
   if ( dialog.ShowModal() == wxID_OK ) {
      // TransferDataFromWindow has changed the current rule,
      // and possibly the current algorithm as well
      return true;
   } else {
      // user hit Cancel so restore name array and rule
      namedrules.Clear();
      namedrules = oldnames;
      return !RestoreRule(oldrule);
      // note that we return true if RestoreRule failed and had to
      // switch to the current algorithm's default rule
   }
}