forked from raduprv/Eternal-Lands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context_menu.cpp
1077 lines (940 loc) · 39.2 KB
/
context_menu.cpp
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
#include <cassert>
#include <iostream>
#include <map>
#include <string>
#include <vector>
#include <cmath>
#include <SDL_types.h>
#include "context_menu.h"
#include "elconfig.h"
#include "elwindows.h"
#include "font.h"
#include "gamewin.h"
#include "gl_init.h"
#include "interface.h"
#ifdef ANDROID
#include "misc.h"
#include "items.h"
#endif
#include "sound.h"
//
// Implements a simple context menu system using the standard el windows.
// Intended to be a familiar GUI context menu activated via a right mouse click.
// At its simplest, the user code just needs to create a new context object
// providing a callback function for when an option is selected or using boolean
// only options. The Container class provides a creation/destruction/management/access
// wrapper.
// Author bluap/pjbroad March/April 2008
//
namespace cm
{
//
// The context menu class. Each manu uses a seperate object stored in
// the Container class. One el window is used for all menus. This class
// implements the menu display, option hight-lighting, checkbox options and
// menu option selection. It also stores size, colour and state information.
//
class Menu
{
public:
Menu(const char *menu_list, int (*handler)(window_info *, int, int, int, int));
int show(int cm_widget_id);
int display(window_info *win, int mx, int my, Uint32 flags);
int click(window_info *win, int mx, int my, Uint32 flags);
int set(const char *menu_list, int (*handler)(window_info *, int, int, int, int));
int add(const char *menu_list, int (*handler)(window_info *, int, int, int, int));
void set_pre_show_handler(void (*handler)(window_info *, int, int, int, window_info *)) { pre_show_handler = handler; }
int set_sizes(int border, int text_border, int line_sep, float zoom);
int set_colour(size_t cm_id, enum CM_COLOUR_NAME colour_name, float r, float g, float b);
int change_line(size_t line_index, const char *new_entry);
int bool_line(size_t line_index, int *control_var, const char *config_name);
int grey_line(size_t line_index, bool is_grey);
void show_lines(size_t my_id);
void set_data(void *data) { data_ptr = data; }
void *get_data(void) const { return data_ptr; }
float scaled_value(float val) const;
private:
int resize(void);
int bool_box_size(void) const { return 15; }
int border, text_border, line_sep;
float zoom, bool_tick_width;
int opened_mouse_x, opened_mouse_y;
int (*handler)(window_info *, int, int, int, int);
void (*pre_show_handler)(window_info *, int, int, int, window_info *);
void *data_ptr;
int width, height;
int selection;
bool menu_has_bools;
class Menu_Line
{
public:
Menu_Line(const std::string& _text) : text(_text), control_var(0), config_name(0), is_grey(false), is_separator(false) {}
std::string text;
int *control_var;
const char *config_name;
bool is_grey;
bool is_separator;
};
std::vector<Menu_Line> menu_lines;
class myRGB
{
public:
myRGB(void) : r(0.0), g(0.0), b(0.0) {}
void set(float _r, float _g, float _b) { r=_r; g=_g; b=_b; }
float r, g, b;
};
myRGB highlight_top;
myRGB highlight_bottom;
myRGB text_colour;
myRGB grey_colour;
};
//
// A simple container class for the context menus.
// Provides creation and destruction of context menus
// and any other 'across all menu' functions
// There can only be one instance!
//
class Container
{
public:
~Container();
// Return the singleton instance of this container
static Container& get_instance()
{
static Container container;
return container;
}
size_t create(const char *menu_list, int (*handler)(window_info *, int, int, int, int ));
int destroy(size_t cm_id);
int pre_show_check(Uint32 flags);
void post_show_check(bool force);
int show_if_active(int window_id);
int show_direct(size_t cm_id, int window_id, int widget_id);
int set(size_t cm_id, const char *menu_list, int (*handler)(window_info *, int, int, int, int)) { if (!valid(cm_id)) return 0; return menus[cm_id]->set(menu_list, handler); }
int add(size_t cm_id, const char *menu_list, int (*handler)(window_info *, int, int, int, int)) { if (!valid(cm_id)) return 0; return menus[cm_id]->add(menu_list, handler); }
int set_pre_show_handler(size_t cm_id, void (*handler)(window_info *, int, int, int, window_info *)) { if (!valid(cm_id)) return 0; menus[cm_id]->set_pre_show_handler(handler); return 1; }
int bool_line(size_t cm_id, size_t line_index, int *control_var, const char *config_name) { if (!valid(cm_id)) return 0; return menus[cm_id]->bool_line(line_index, control_var, config_name); }
int grey_line(size_t cm_id, size_t line_index, bool is_grey) { if (!valid(cm_id)) return 0; return menus[cm_id]->grey_line(line_index, is_grey); }
int set_sizes(size_t cm_id, int border, int text_border, int line_sep, float zoom) { if (!valid(cm_id)) return 0; return menus[cm_id]->set_sizes(border, text_border, line_sep, zoom); }
int set_colour(size_t cm_id, enum CM_COLOUR_NAME colour_name, float r, float g, float b) { if (!valid(cm_id)) return 0; return menus[cm_id]->set_colour(cm_id, colour_name, r, g, b); }
int add_window(size_t cm_id, int window_id) { if (!valid(cm_id)) return 0; full_windows.insert(std::pair<int, size_t>(window_id, cm_id)); return 1; }
int add_region(size_t cm_id, int window_id, int posx, int posy, int lenx, int leny) { if (!valid(cm_id)) return 0; window_regions.insert(std::pair<int, Region>(window_id, Region(cm_id, posx, posy, lenx, leny))); return 1; }
int add_widget(size_t cm_id, int window_id, int widget_id) { if (!valid(cm_id)) return 0; window_widgets.insert(std::pair<int, Widget>(window_id, Widget(cm_id, widget_id))); return 1; }
int remove_window(int window_id) { if (full_windows.erase(window_id)) return 1; return 0;}
int remove_regions(int window_id) { if (window_regions.erase(window_id)) return 1; return 0; }
int remove_widget(int window_id, int widget_id);
int get_active_window_id(void) const { return active_window_id; }
int get_active_widget_id(void) const { return active_widget_id; }
bool valid(size_t cm_id) const { return cm_id<menus.size() && menus[cm_id]; }
size_t window_shown(void) const;
void showinfo(void);
void *get_data(size_t cm_id) const { if (!valid(cm_id)) return 0; return menus[cm_id]->get_data(); }
void set_data(size_t cm_id, void *data) { if (valid(cm_id)) menus[cm_id]->set_data(data); }
float get_current_scale(void) const { return windows_list.window[cm_window_id].current_scale; }
private:
Container();
Container(const Container&) = delete;
Container& operator=(const Container&) = delete;
class Region // Wrapper for window region activation area.
{
public:
Region(size_t _cm_id, int _pos_x, int _pos_y, int _len_x, int _len_y)
: cm_id(_cm_id), pos_x(_pos_x), pos_y(_pos_y), len_x(_len_x), len_y(_len_y) {}
size_t cm_id;
int pos_x, pos_y, len_x, len_y;
};
typedef std::multimap<int, Region> REG_MM;
REG_MM window_regions;
class Widget // Wrapper for window widget activation area.
{
public:
Widget(size_t _cm_id, int _widget_id)
: cm_id(_cm_id), widget_id(_widget_id) {}
size_t cm_id;
int widget_id;
};
typedef std::multimap<int, Widget > WID_MM;
WID_MM window_widgets;
int cm_window_id;
int active_window_id;
int active_widget_id;
std::vector<Menu*> menus;
std::map<int, size_t> full_windows; // <window_id, cm_id>
bool menu_opened;
};
// Generic el windows callback for clicks in a context menu.
extern "C" int click_context_handler(window_info *win, int mx, int my, Uint32 flags)
{
Menu *thismenu = (Menu *)win->data;
int return_value = thismenu->click(win, mx, my, flags);
if (return_value)
do_click_sound();
else
do_alert1_sound();
return return_value;
}
// Generic el windows callback for displaying a context menu.
extern "C" int display_context_handler(window_info *win, int mx, int my, Uint32 flags)
{
Menu *thismenu = (Menu *)win->data;
return thismenu->display(win, mx, my, flags);
}
// safely get a window_info pointer from a window_id
window_info * window_info_from_id(int window_id)
{
if ((window_id > -1) && (window_id < windows_list.num_windows))
return &windows_list.window[window_id];
else
return NULL;
}
// constructor - create the context menu window and initialise containers
Container::Container()
: cm_window_id(-1), active_window_id(-1), active_widget_id(-1), menu_opened(false)
{
menus.resize(20,0);
if ((cm_window_id = create_window("Context Menu", -1, 0, 0, 0, 0, 0,
ELW_USE_UISCALE|ELW_SWITCHABLE_OPAQUE|ELW_USE_BACKGROUND|ELW_USE_BORDER|ELW_ALPHA_BORDER)) == -1)
return;
set_window_handler(cm_window_id, ELW_HANDLER_DISPLAY, (int (*)())&display_context_handler );
set_window_handler(cm_window_id, ELW_HANDLER_CLICK, (int (*)())&click_context_handler );
}
// destructor - destory all instances of context menus and the context menu window
Container::~Container(void)
{
for (size_t i=0; i<menus.size(); ++i)
{
if (menus[i])
{
delete menus[i];
menus[i] = 0;
}
}
destroy_window(cm_window_id);
}
// create a new context menu object
size_t Container::create(const char *menu_list, int (*handler)(window_info *, int, int, int, int ))
{
Menu *temp = new Menu(menu_list, handler);
// find an unused slot ...
for (size_t i=0; i<menus.size(); ++i)
{
if (!menus[i])
{
menus[i] = temp;
return i;
}
}
// ... or create some more space
size_t oldsize = menus.size();
menus.resize(oldsize*2,0);
menus[oldsize] = temp;
return oldsize;
}
// destroy the specified context menu object, removing all the activation points too
int Container::destroy(size_t cm_id)
{
if (!valid(cm_id))
return 0;
bool found_entry = false;
// remove all full windows linked to this context menu
do
{
found_entry = false;
for (std::map<int, size_t>::iterator itp = full_windows.begin(); itp != full_windows.end(); ++itp)
{
if (itp->second == cm_id)
{
full_windows.erase(itp);
found_entry = true;
break;
}
}
} while (found_entry);
// remove all regions linked to this context menu
do
{
found_entry = false;
for (REG_MM::iterator itp = window_regions.begin(); itp != window_regions.end(); ++itp)
{
if (itp->second.cm_id == cm_id)
{
window_regions.erase(itp);
found_entry = true;
break;
}
}
} while (found_entry);
// remove all widgets linked to this context menu
do
{
found_entry = false;
for (WID_MM::iterator itp = window_widgets.begin(); itp != window_widgets.end(); ++itp)
{
if (itp->second.cm_id == cm_id)
{
window_widgets.erase(itp);
found_entry = true;
break;
}
}
} while (found_entry);
delete menus[cm_id];
menus[cm_id] = 0;
return 1;
} // end Container::destroy()
// do the pre show checks and return the activation state, e.g. if mouse right-clicked
int Container::pre_show_check(Uint32 flags)
{
int cm_to_activate = flags & ELW_RIGHT_MOUSE;
if (cm_to_activate && ((flags & KMOD_SHIFT) || (flags & KMOD_ALT) || (flags & KMOD_CTRL)))
cm_to_activate = 0; // exclude right clicks with modifier keys pressed
menu_opened = false;
return cm_to_activate;
}
// hide the window if its's open and reset the active window/widget values
void Container::post_show_check(bool force)
{
// don't close a just (show_direct()) opened context menu
if (!force && menu_opened)
select_window(cm_window_id);
else
{
hide_window(cm_window_id);
active_window_id = active_widget_id = -1;
}
menu_opened = false;
}
// check if the specified window has any activation points then open the relevant context menu
int Container::show_if_active(int window_id)
{
// check if we're right clicking the title of a window that has a context menu
if (window_id >= 0 && window_id < windows_list.num_windows)
{
window_info *win = &windows_list.window[window_id];
int y = mouse_y - win->cur_y;
if (y < 0 && valid(win->cm_id) && mouse_in_window(window_id, mouse_x, mouse_y))
return show_direct(win->cm_id, window_id, -1);
}
// check we're in the specified window
if (mouse_in_window(window_id, mouse_x, mouse_y) < 1)
return 0;
// check if this window has any widget activation settings and open if mouse in that widget
{
std::pair< WID_MM::iterator, WID_MM::iterator> itp = window_widgets.equal_range(window_id);
for (WID_MM::iterator it = itp.first; it != itp.second; ++it)
{
window_info *win = window_info_from_id(window_id);
widget_list *wid = widget_find(window_id, it->second.widget_id);
assert(wid!=NULL && win!=NULL);
if ((mouse_x > win->cur_x + wid->pos_x) && (mouse_x <= win->cur_x + wid->pos_x + wid->len_x) &&
(mouse_y > win->cur_y + wid->pos_y) && (mouse_y <= win->cur_y + wid->pos_y + wid->len_y))
return show_direct(it->second.cm_id, window_id, it->second.widget_id);
}
}
// check if this window has any active regions and open if mouse in that region
{
std::pair< REG_MM::iterator, REG_MM::iterator> itp = window_regions.equal_range(window_id);
for (REG_MM::iterator it = itp.first; it != itp.second; ++it)
{
window_info *win = window_info_from_id(window_id);
assert(win!=NULL);
Region *cr = &it->second;
if ((mouse_x > win->cur_x + cr->pos_x) && (mouse_x < win->cur_x + cr->pos_x + cr->len_x) &&
(mouse_y > win->cur_y + cr->pos_y) && (mouse_y < win->cur_y + cr->pos_y + cr->len_y))
return show_direct(cr->cm_id, window_id, -1);
}
}
// check if this window has a full-window context menu - do this last to allow others within window
std::map<int,size_t>::iterator fwit = full_windows.find(window_id);
if (fwit != full_windows.end())
return show_direct(fwit->second, window_id, -1);
return 0;
} // end Container::show_if_active()
// directly open the specified conetext menu, use specified window/widget id as if activated
int Container::show_direct(size_t cm_id, int window_id, int widget_id)
{
if (!valid(cm_id))
return 0;
menu_opened = true;
active_window_id = window_id;
active_widget_id = widget_id;
return menus[cm_id]->show(cm_window_id);
}
// remove any activation for the specifed window/widget
int Container::remove_widget(int window_id, int widget_id)
{
std::pair< WID_MM::iterator, WID_MM::iterator> itp = window_widgets.equal_range(window_id);
for (WID_MM::iterator it = itp.first; it != itp.second; ++it)
{
if (it->second.widget_id == widget_id)
{
window_widgets.erase(it);
return 1;
}
}
return 0;
}
// return the id the currently open context menu or CM_INIT_VALUE is none open
size_t Container::window_shown(void) const
{
window_info * win = window_info_from_id(cm_window_id);
if (!get_show_window(cm_window_id) || win == NULL)
return CM_INIT_VALUE;
Menu *current_menu = (Menu *)win->data;
for (size_t i=0; i<menus.size(); i++)
if (current_menu == menus[i])
return i;
return CM_INIT_VALUE;
}
// for debug - display info on status of container object
void Container::showinfo(void)
{
std::cout << "\nContext menu information:" << std::endl;
std::cout << "\nMenus:-" << std::endl;
for (size_t i=0; i<menus.size(); ++i)
if (menus[i])
menus[i]->show_lines(i);
std::cout << "\nFull Windows:-" << std::endl;
for (std::map<int, size_t>::iterator itp = full_windows.begin(); itp != full_windows.end(); ++itp)
{
window_info *win = window_info_from_id(itp->first);
std::cout << " window_id=" << itp->first << " name=[" << ((win!=NULL)?win->window_name:"")
<< "] menu_id=" << itp->second << std::endl;
}
std::cout << "\nWindow Regions:-" << std::endl;
for (REG_MM::iterator itp = window_regions.begin(); itp != window_regions.end(); ++itp)
{
window_info *win = window_info_from_id(itp->first);
std::cout << " window_id=" << itp->first << " name=[" << ((win!=NULL)?win->window_name:"")
<< "] region=(" << itp->second.pos_x << ", " << itp->second.pos_y << ", " << itp->second.len_x
<< ", " << itp->second.len_y << ")" << " menu_id=" << itp->second.cm_id << std::endl;
}
std::cout << "\nWindow Widgets:-" << std::endl;
for (WID_MM::iterator itp = window_widgets.begin(); itp != window_widgets.end(); ++itp)
{
window_info *win = window_info_from_id(itp->first);
std::cout << " window_id=" << itp->first << " name=[" << ((win!=NULL)?win->window_name:"")
<< "] widget=" << itp->second.widget_id << " menu_id=" << itp->second.cm_id << std::endl;
}
} // end showinfo()
// Constructor - set default values for new menu
Menu::Menu(const char *menu_list, int (*handler)(window_info *, int, int, int, int))
: border(5), text_border(5), line_sep(3), zoom(0.8), data_ptr(0), selection(-1), menu_has_bools(false)
{
#ifdef ANDROID
// ANDROID_TODO this needs to be change on rescale too, and probably in the non-ANDROID client too
line_sep = scaled_value(12);
#endif
set(menu_list, handler);
pre_show_handler = 0;
highlight_top.set(gui_invert_color[0], gui_invert_color[1], gui_invert_color[2]);
highlight_bottom.set(gui_color[0], gui_color[1], gui_color[2]);
text_colour.set(1.0f, 1.0f, 1.0f);
grey_colour.set(0.7f, 0.7f, 0.7f);
}
// Set or replace the menu items
int Menu::set(const char *menu_list, int (*handler)(window_info *, int, int, int, int))
{
this->handler = handler;
menu_lines.clear();
return add(menu_list, handler);
}
// Add new the menu items and optionally replace the handler
int Menu::add(const char *menu_list, int (*handler)(window_info *, int, int, int, int))
{
if (handler)
this->handler = handler;
if (menu_list == NULL)
menu_list = "";
std::string menu_string(menu_list);
for (size_t pos = 0; pos != std::string::npos;)
{
size_t endpos = menu_string.find('\n', pos);
std::string new_entry = menu_string.substr(pos, endpos-pos);
if (!new_entry.empty())
{
Menu_Line newline(new_entry);
if (new_entry == std::string("--"))
newline.is_separator = true;
menu_lines.push_back(newline);
}
if (endpos == std::string::npos)
break;
pos = endpos+1;
}
return resize();
}
// Change a single menu item if it exists
int Menu::change_line(size_t line_index, const char *new_entry)
{
if (line_index >= menu_lines.size())
return 0;
menu_lines[line_index].text = std::string(new_entry);
menu_lines[line_index].control_var = 0;
menu_lines[line_index].config_name = 0;
menu_lines[line_index].is_grey = menu_lines[line_index].is_separator = false;
if (new_entry == std::string("--"))
menu_lines[line_index].is_separator = true;
return 1;
}
// Make a line in the menu an off/on option, control_var determines state
int Menu::bool_line(size_t line_index, int *control_var, const char *config_name)
{
if (line_index >= menu_lines.size())
return 0;
menu_lines[line_index].control_var = control_var;
menu_lines[line_index].config_name = config_name;
if (!menu_has_bools)
{
menu_has_bools = true;
resize();
}
return 1;
}
// grey/ungrey a menu line
int Menu::grey_line(size_t line_index, bool is_grey)
{
if (line_index >= menu_lines.size())
return 0;
menu_lines[line_index].is_grey = is_grey;
return 1;
}
// Calculate the height/width of the context menu and resize the window
int Menu::resize(void)
{
const float scale = scaled_value(1.0);
float fwidth = 0, fheight = 0;
for (size_t i=0; i<menu_lines.size(); i++)
{
const unsigned char* thetext = reinterpret_cast<const unsigned char*>(menu_lines[i].text.c_str());
int str_width = get_string_width_zoom(thetext, UI_FONT, scale);
if (str_width > fwidth)
fwidth = str_width;
if (menu_lines[i].is_separator)
fheight += get_line_height(UI_FONT, 0.5 * scale);
else
fheight += get_line_height(UI_FONT, scale) + line_sep;
}
bool_tick_width = (menu_has_bools)? scaled_value(bool_box_size()+text_border) : 0;
fwidth += bool_tick_width + (border + text_border) * 2;
fheight += border * 2;
height = static_cast<int>(fheight+0.5);
width = static_cast<int>(fwidth+0.5);
return 1;
}
// show the selected context menu
int Menu::show(int cm_window_id)
{
// if the window is already displayed, hide it then return
if (get_show_window(cm_window_id))
{
hide_window(cm_window_id);
return 1;
}
// save the mouse position for the callback
int wx = opened_mouse_x = mouse_x;
int wy = opened_mouse_y = mouse_y;
// resize in case scaling changed
resize();
// move the window, one corner anchored to the mouse click position, so its on screen
if (wx+width > window_width)
wx -= width;
if (wy+height > window_height)
wy -= height;
move_window(cm_window_id, -1, 0, wx, wy);
// make sure the window is updated with this instances size and data
windows_list.window[cm_window_id].data = this;
resize_window(cm_window_id, width, height);
// parent_win will be NULL if we don't have one
const Container& container = Container::get_instance();
window_info *parent_win = window_info_from_id(container.get_active_window_id());
// copy any parent window opacity to the context menu
if (parent_win != NULL && (parent_win->flags & ELW_SWITCHABLE_OPAQUE))
windows_list.window[cm_window_id].opaque = parent_win->opaque;
else
// otherwise use the default setting
windows_list.window[cm_window_id].opaque = opaque_window_backgrounds;
/* call any registered pre_show handler */
if (pre_show_handler)
{
// if we have a parent window, the mouse position is the original position that opened the menu
if (parent_win != NULL)
{
int parent_win_x = opened_mouse_x - parent_win->cur_x;
int parent_win_y = opened_mouse_y - parent_win->cur_y;
(*pre_show_handler)(parent_win, container.get_active_widget_id(),
parent_win_x, parent_win_y, window_info_from_id(cm_window_id));
}
else
(*pre_show_handler)(NULL, 0, 0, 0, window_info_from_id(cm_window_id));
}
show_window(cm_window_id);
select_window(cm_window_id);
return 1;
}
// display the menu options with highlight if mouse is over one
int Menu::display(window_info *win, int mx, int my, Uint32 flags)
{
CHECK_GL_ERRORS();
float currenty = border + line_sep;
float scale = scaled_value(1.0);
int line_height = get_line_height(win->font_category, scale);
int box_size = std::round(scaled_value(bool_box_size()));
float line_step = line_sep + max2i(box_size, line_height);
selection = -1;
for (size_t i=0; i<menu_lines.size(); ++i)
{
#ifndef ANDROID
// if the mouse is over a valid line, draw the highlight and select line
if (!menu_lines[i].is_grey && !menu_lines[i].is_separator &&
(mouse_y > win->cur_y + currenty - line_sep) &&
(mouse_y < win->cur_y + currenty + line_step - line_sep) &&
(mouse_x > win->cur_x + border) &&
(mouse_x < win->cur_x + width - border))
{
glDisable(GL_TEXTURE_2D);
glBegin(GL_QUADS);
glColor3f(highlight_top.r, highlight_top.g, highlight_top.b);
glVertex3i(border, int(currenty + 0.5) - line_sep, 0);
glColor3f(highlight_bottom.r, highlight_bottom.g, highlight_bottom.b);
glVertex3i(border, int(currenty + line_step + 0.5) - line_sep, 0);
glVertex3i(border+width-2*border, int(currenty + line_step + 0.5) - line_sep, 0);
glColor3f(highlight_top.r, highlight_top.g, highlight_top.b);
glVertex3i(border+width-2*border, int(currenty + 0.5) - line_sep, 0);
glEnd();
glEnable(GL_TEXTURE_2D);
selection = i;
}
#endif
// draw a separator ...
if (menu_lines[i].is_separator)
{
int posx = border + text_border;
int posy = currenty + get_line_height(win->font_category, 0.25*scale) - line_sep;
glColor3f(grey_colour.r, grey_colour.g, grey_colour.b);
glDisable(GL_TEXTURE_2D);
glBegin(GL_LINES);
glVertex2i(posx, posy);
glVertex2i(win->len_x - posx, posy);
glEnd();
glEnable(GL_TEXTURE_2D);
currenty += get_line_height(win->font_category, 0.5*scale);
}
// ... or the menu line
else
{
if (menu_lines[i].is_grey)
glColor3f(grey_colour.r, grey_colour.g, grey_colour.b);
else
glColor3f(text_colour.r, text_colour.g, text_colour.b);
// draw the tickbox if bool option */
if (menu_has_bools && menu_lines[i].control_var)
{
int box_x = border+text_border;
int box_y = std::round(currenty + (box_size < line_height ? 0.5 * (line_height - box_size) : 0)) - line_sep / 2;
glDisable(GL_TEXTURE_2D);
glBegin( *menu_lines[i].control_var ? GL_QUADS: GL_LINE_LOOP);
glVertex3i(box_x, box_y, 0);
glVertex3i(box_x + box_size, box_y, 0);
glVertex3i(box_x + box_size, box_y + box_size, 0);
glVertex3i(box_x, box_y + box_size, 0);
glEnd();
glEnable(GL_TEXTURE_2D);
}
// draw the text
int text_y = std::round(currenty + (box_size < line_height ? 0 : 0.5*(box_size - line_height)));
draw_string_zoomed(int(border+text_border+bool_tick_width+0.5), text_y - line_sep / 2,
(const unsigned char *)menu_lines[i].text.c_str(), 1, scaled_value(1.0));
currenty += line_step;
}
} // end foir each line
CHECK_GL_ERRORS();
return 1;
} // end Menu::display()
// if an option is selected, toggle if a bool option and call any callback function
int Menu::click(window_info *win, int mx, int my, Uint32 flags)
{
#ifdef ANDROID
// ANDROID_TODO common function with display()
// We always want to use the entry that is clicked, the highlight is not used
{
float scale = scaled_value(1.0);
int line_height = get_line_height(win->font_category, scale);
int box_size = std::round(scaled_value(bool_box_size()));
float currenty = border + line_sep;
float line_step = line_sep + max2i(box_size, line_height);
for (size_t i=0; i<menu_lines.size(); ++i)
{
// if the mouse is over a valid line, select it
if (!menu_lines[i].is_grey && !menu_lines[i].is_separator &&
(my > currenty - line_sep) &&
(my < currenty + line_step - line_sep) &&
(mx > border) &&
(mx < width - border))
{
selection = i;
break;
}
if (menu_lines[i].is_separator)
currenty += get_line_height(win->font_category, 0.5*scale);
else
currenty += line_step;
}
}
#endif
if (selection < 0)
return 0;
// if a bool line, toggle the control variable
if (menu_lines[selection].control_var)
{
// if we have a config control name, use the vars change function, otherwise just toggle
if (menu_lines[selection].config_name)
toggle_OPT_BOOL_by_name(menu_lines[selection].config_name);
else
*menu_lines[selection].control_var = !*menu_lines[selection].control_var;
if (!handler)
return 1;
}
if (!handler)
return 0;
// if we have a parent window, the mouse position is the original position that opened the menu
const Container& container = Container::get_instance();
window_info *parent_win = window_info_from_id(container.get_active_window_id());
if (parent_win != NULL)
{
int parent_win_x = opened_mouse_x - parent_win->cur_x;
int parent_win_y = opened_mouse_y - parent_win->cur_y;
return (*handler)(parent_win, container.get_active_widget_id(),
parent_win_x, parent_win_y, selection);
}
else
return (*handler)(NULL, 0, 0, 0, selection);
}
// set basic size properties
int Menu::set_sizes(int border, int text_border, int line_sep, float zoom)
{
this->border = border;
this->text_border = text_border;
this->line_sep = line_sep;
this->zoom = zoom;
return resize();
}
// set the named property colour
int Menu::set_colour(size_t cm_id, enum CM_COLOUR_NAME colour_name, float r, float g, float b)
{
switch (colour_name)
{
case CM_HIGHLIGHT_TOP: highlight_top.set(r,g,b); break;
case CM_HIGHLIGHT_BOTTOM: highlight_bottom.set(r,g,b); break;
case CM_TEXT: text_colour.set(r,g,b); break;
case CM_GREY: grey_colour.set(r,g,b); break;
default:
return 0;
}
return 1;
}
// show information about menu lines
void Menu::show_lines(size_t my_id)
{
std::cout << " menu_id=" << my_id << " has_bools=" << menu_has_bools << std::endl;
for (size_t i=0; i<menu_lines.size(); ++i)
{
if (menu_lines[i].control_var)
{
std::cout << " [" << menu_lines[i].text << "] value=" << *menu_lines[i].control_var;
if (menu_lines[i].config_name)
std::cout << " config name=[" << *menu_lines[i].config_name << "]";
}
else
std::cout << " [" << menu_lines[i].text << "]";
std::cout << " " << ((menu_lines[i].is_grey) ?"greyed":"ungreyed")
<< " " << ((menu_lines[i].is_separator) ?"separator":"normal") << std::endl;
}
}
// calculate a scaled value
float Menu::scaled_value(float val) const
{
return val * Container::get_instance().get_current_scale() * zoom;
}
} // end cm namespace
// C wrapper functions
extern "C" size_t cm_create(const char *menu_list, int (*handler)(window_info *, int, int, int, int )) { return cm::Container::get_instance().create(menu_list, handler); }
extern "C" int cm_destroy(size_t cm_id) { return cm::Container::get_instance().destroy(cm_id); }
extern "C" int cm_pre_show_check(Uint32 flags) { return cm::Container::get_instance().pre_show_check(flags); }
extern "C" void cm_post_show_check(int force) { cm::Container::get_instance().post_show_check(force); }
extern "C" int cm_show_if_active(int window_id) { return cm::Container::get_instance().show_if_active(window_id); }
extern "C" int cm_show_direct(size_t cm_id, int window_id, int widget_id) { return cm::Container::get_instance().show_direct(cm_id, window_id, widget_id); }
extern "C" int cm_bool_line(size_t cm_id, size_t line_index, int *control_var, const char *config_name) { return cm::Container::get_instance().bool_line(cm_id, line_index, control_var, config_name); }
extern "C" int cm_grey_line(size_t cm_id, size_t line_index, int is_grey) { return cm::Container::get_instance().grey_line(cm_id, line_index, is_grey); }
extern "C" int cm_set(size_t cm_id, const char *menu_list, int (*handler)(window_info *, int, int, int, int)) { return cm::Container::get_instance().set(cm_id, menu_list, handler); }
extern "C" int cm_add(size_t cm_id, const char *menu_list, int (*handler)(window_info *, int, int, int, int)) { return cm::Container::get_instance().add(cm_id, menu_list, handler); }
extern "C" int cm_set_pre_show_handler(size_t cm_id, void (*handler)(window_info *, int, int, int, window_info *)) { return cm::Container::get_instance().set_pre_show_handler(cm_id, handler); }
extern "C" int cm_set_sizes(size_t cm_id, int border, int text_border, int line_sep, float zoom) { return cm::Container::get_instance().set_sizes(cm_id, border, text_border, line_sep, zoom); }
extern "C" int cm_set_colour(size_t cm_id, enum CM_COLOUR_NAME colour_name, float r, float g, float b) { return cm::Container::get_instance().set_colour(cm_id, colour_name, r, g, b); }
extern "C" int cm_add_window(size_t cm_id, int window_id) { return cm::Container::get_instance().add_window(cm_id, window_id); }
extern "C" int cm_add_region(size_t cm_id, int window_id, int posx, int posy, int lenx, int leny) { return cm::Container::get_instance().add_region(cm_id, window_id, posx, posy, lenx, leny); }
extern "C" int cm_add_widget(size_t cm_id, int window_id, int widget_id) { return cm::Container::get_instance().add_widget(cm_id, window_id, widget_id); }
extern "C" int cm_remove_window(int window_id) { return cm::Container::get_instance().remove_window(window_id); }
extern "C" int cm_remove_regions(int window_id) { return cm::Container::get_instance().remove_regions(window_id); }
extern "C" int cm_remove_widget(int window_id, int widget_id) { return cm::Container::get_instance().remove_widget(window_id, widget_id); }
extern "C" void cm_showinfo(void) { cm::Container::get_instance().showinfo(); }
extern "C" int cm_valid(size_t cm_id) { if (cm::Container::get_instance().valid(cm_id)) return 1; else return 0; }
extern "C" size_t cm_window_shown(void) { return cm::Container::get_instance().window_shown(); }
extern "C" void *cm_get_data(size_t cm_id) { return cm::Container::get_instance().get_data(cm_id); }
extern "C" void cm_set_data(size_t cm_id, void *data) { cm::Container::get_instance().set_data(cm_id, data); }
//
// Provides a window to exercise context menu functions.
//
#ifdef CONTEXT_MENUS_TEST
static int cm_test_win = -1;
static size_t cm_test_win_menu = -1;
static size_t cm_test_reg_menu = -1;
static size_t cm_test_wid_menu = -1;
static size_t cm_test_dir_menu = -1;
static int cm_test_wid = -1;
static int cm_bool_var = 0;
static int cm_coord[2][4] = {{200, 100, 40, 40}, {250, 150, 40, 40}};
static int cm_grey_var = 0;
static int cm_test_window_display_handler(window_info *win)
{
static int last_bool_var = cm_bool_var;
int i;
CHECK_GL_ERRORS();
// draw the region boxes so we know where they are
for (i=0; i<2; i++)
{
glDisable(GL_TEXTURE_2D);
glColor3fv(gui_color);
glBegin(GL_LINE_LOOP);
glVertex3i(cm_coord[i][0], cm_coord[i][1], 0);
glVertex3i(cm_coord[i][0]+cm_coord[i][2], cm_coord[i][1], 0);
glVertex3i(cm_coord[i][0]+cm_coord[i][2], cm_coord[i][1]+cm_coord[i][3], 0);
glVertex3i(cm_coord[i][0], cm_coord[i][1]+cm_coord[i][3], 0);
glEnd();
glEnable(GL_TEXTURE_2D);
}
if (cm_bool_var != last_bool_var)
{
last_bool_var = cm_bool_var;
printf("Bool var changed, now=%d\n", cm_bool_var);
}
CHECK_GL_ERRORS();
return 1;
}
static void cm_test_menu_pre_show_handler(window_info *win, int widget_id, int mx, int my, window_info *cm_win)
{
printf("CM pre show: Set bool menu cm_grey_line()=%d window_id=%d widget_id=%d mx=%d my=%d winid=%d\n",
cm_grey_line(cm_test_win_menu, 3, cm_grey_var), win->window_id, widget_id, mx, my, cm_win->window_id);
}
static int cm_test_menu_handler(window_info *win, int widget_id, int mx, int my, int option)
{
printf("CM selected: window_id=%d widget_id=%d mx=%d my=%d option=%d\n", win->window_id, widget_id, mx, my, option );
return 1;
}
static int cm_info_but_handler(widget_list *widget, int mx, int my, Uint32 flags)
{
cm_showinfo();
return 1;
}
static int cm_dir_click_handler(widget_list *widget, int mx, int my, Uint32 flags)
{
if (flags & ELW_RIGHT_MOUSE)
printf("Direct clicked cm_show_direct()=%d\n", cm_show_direct(cm_test_dir_menu, cm_test_win, -1));
return 1;
}
static int cm_add_win_handler(widget_list *widget, int mx, int my, Uint32 flags)
{
printf("Adding window cm_add_window()=%d\n", cm_add_window(cm_test_win_menu, widget->window_id));
return 1;
}
extern "C" int cm_del_win_handler(widget_list *widget, int mx, int my, Uint32 flags)
{
printf("Removing window cm_remove_window()=%d\n", cm_remove_window(widget->window_id));
return 1;
}
static int cm_add_reg_handler(widget_list *widget, int mx, int my, Uint32 flags)
{
int i;
for (i=0; i<2; i++)
printf("Adding region %d cm_add_region()=%d\n", i,
cm_add_region(cm_test_reg_menu, widget->window_id, cm_coord[i][0], cm_coord[i][1], cm_coord[i][2], cm_coord[i][3] ));
return 1;
}
extern "C" int cm_del_reg_handler(widget_list *widget, int mx, int my, Uint32 flags)
{
printf("Removing regions status=%d\n", cm_remove_regions(widget->window_id));
return 1;
}
static int cm_add_wid_handler(widget_list *widget, int mx, int my, Uint32 flags)
{
printf("Adding widget cm_add_widget()=%d\n", cm_add_widget(cm_test_wid_menu, widget->window_id, cm_test_wid));
return 1;
}