1 | /* |
---|
2 | * Abuse - dark 2D side-scrolling platform game |
---|
3 | * Copyright (c) 1995 Crack dot Com |
---|
4 | * Copyright (c) 2005-2011 Sam Hocevar <sam@hocevar.net> |
---|
5 | * |
---|
6 | * This software was released into the Public Domain. As with most public |
---|
7 | * domain software, no warranty is made or implied by Crack dot Com, by |
---|
8 | * Jonathan Clark, or by Sam Hocevar. |
---|
9 | */ |
---|
10 | |
---|
11 | #if defined HAVE_CONFIG_H |
---|
12 | # include "config.h" |
---|
13 | #endif |
---|
14 | |
---|
15 | #include <string.h> |
---|
16 | |
---|
17 | #include "common.h" |
---|
18 | |
---|
19 | #include "pmenu.h" |
---|
20 | |
---|
21 | void pmenu::move(int new_x, int new_y) |
---|
22 | { |
---|
23 | wm->move_window(bar,new_x,new_y); |
---|
24 | } |
---|
25 | |
---|
26 | pmenu::pmenu(int X, int Y, pmenu_item *first, image *screen) |
---|
27 | { |
---|
28 | top=first; |
---|
29 | active=NULL; |
---|
30 | |
---|
31 | ivec2 caa, cbb; |
---|
32 | screen->GetClip(caa, cbb); |
---|
33 | if (caa.x<X) caa.x=X; |
---|
34 | int w = cbb.x - caa.x - Jwindow::left_border() - Jwindow::right_border(); |
---|
35 | int h = Jwindow::top_border() + Jwindow::bottom_border(); |
---|
36 | |
---|
37 | bar = wm->CreateWindow(ivec2(X, Y), ivec2(w, 0), NULL); |
---|
38 | bar->freeze(); // can't drag this window |
---|
39 | bar->m_surf->WidgetBar(ivec2(0, 0), ivec2(w - 1, h - 1), |
---|
40 | wm->bright_color(), wm->medium_color(), |
---|
41 | wm->dark_color()); |
---|
42 | |
---|
43 | int total=0,tx,tw; |
---|
44 | pmenu_item *p=top; |
---|
45 | for (; p; p=p->next) total++; |
---|
46 | |
---|
47 | tw=w/(total+1); |
---|
48 | tx=tw/2; |
---|
49 | |
---|
50 | for (p=top; p; p=p->next,tx+=tw) |
---|
51 | p->draw_self(bar,itemx(p),1,itemw(p),1,p==active); |
---|
52 | /* } |
---|
53 | else |
---|
54 | { |
---|
55 | for (p=top; p; p=p->next,tx+=tw) |
---|
56 | p->draw(bar,itemx(p),1,itemw(p),1,p==active); |
---|
57 | }*/ |
---|
58 | |
---|
59 | } |
---|
60 | |
---|
61 | pmenu_item::pmenu_item(int ID, char const *Name, char const *on_off_flag, int Hotkey, pmenu_item *Next) |
---|
62 | { |
---|
63 | xp=-1; |
---|
64 | id=ID; |
---|
65 | hotkey=Hotkey; |
---|
66 | on_off=on_off_flag; |
---|
67 | if (Name) |
---|
68 | n = strdup(Name); |
---|
69 | else n=NULL; |
---|
70 | next=Next; |
---|
71 | sub=NULL; |
---|
72 | } |
---|
73 | |
---|
74 | pmenu_item::pmenu_item(char const *Name, psub_menu *Sub, pmenu_item *Next, int xpos) |
---|
75 | { |
---|
76 | xp=xpos; |
---|
77 | id=0; hotkey=-1; |
---|
78 | next=Next; |
---|
79 | on_off=NULL; |
---|
80 | CONDITION(Name,"Sub menu cannot have a NULL name"); |
---|
81 | n = strdup(Name); |
---|
82 | sub=Sub; |
---|
83 | } |
---|
84 | |
---|
85 | pmenu_item *pmenu_item::find_id(int search_id) |
---|
86 | { |
---|
87 | if (id==search_id) return this; |
---|
88 | else if (sub) return sub->find_id(search_id); |
---|
89 | else return NULL; |
---|
90 | } |
---|
91 | |
---|
92 | pmenu_item *pmenu_item::find_key(int key) |
---|
93 | { |
---|
94 | if (key==hotkey && hotkey!=-1) return this; |
---|
95 | else if (sub) return sub->find_key(key); |
---|
96 | else return NULL; |
---|
97 | } |
---|
98 | |
---|
99 | pmenu::~pmenu() |
---|
100 | { |
---|
101 | while (top) |
---|
102 | { |
---|
103 | pmenu_item *p=top; |
---|
104 | top=top->next; |
---|
105 | delete p; |
---|
106 | } |
---|
107 | if (bar) wm->close_window(bar); |
---|
108 | } |
---|
109 | |
---|
110 | psub_menu::~psub_menu() |
---|
111 | { |
---|
112 | if (win) |
---|
113 | wm->close_window(win); |
---|
114 | |
---|
115 | while (first) |
---|
116 | { |
---|
117 | pmenu_item *tmp=first; |
---|
118 | first=first->next; |
---|
119 | delete tmp; |
---|
120 | } |
---|
121 | } |
---|
122 | |
---|
123 | pmenu_item *psub_menu::find_id(int search_id) |
---|
124 | { |
---|
125 | for (pmenu_item *f=first; f; f=f->next) |
---|
126 | { |
---|
127 | pmenu_item *ret=f->find_id(search_id); |
---|
128 | if (ret) return ret; |
---|
129 | } |
---|
130 | return NULL; |
---|
131 | } |
---|
132 | |
---|
133 | pmenu_item *psub_menu::find_key(int key) |
---|
134 | { |
---|
135 | for (pmenu_item *f=first; f; f=f->next) |
---|
136 | { |
---|
137 | pmenu_item *ret=f->find_key(key); |
---|
138 | if (ret) return ret; |
---|
139 | } |
---|
140 | return NULL; |
---|
141 | } |
---|
142 | |
---|
143 | |
---|
144 | void psub_menu::hide(Jwindow *parent, int x, int y) |
---|
145 | { |
---|
146 | int w,h; |
---|
147 | calc_size(w,h); |
---|
148 | ivec2 caa, cbb; |
---|
149 | main_screen->GetClip(caa, cbb); |
---|
150 | // FIXME: is this correct? it looks like it used to be incorrect |
---|
151 | // before the GetClip refactoring... |
---|
152 | if (w+x>cbb.x-1) |
---|
153 | x=cbb.x-1-w; |
---|
154 | |
---|
155 | if (win) |
---|
156 | { |
---|
157 | if (active!=-1) |
---|
158 | { |
---|
159 | int w,h; |
---|
160 | calc_size(w,h); |
---|
161 | item_num(active)->draw(win,x+3,y+3+active*(wm->font()->Size().y+1),w-6,0,0); |
---|
162 | } |
---|
163 | wm->close_window(win); |
---|
164 | win=NULL; |
---|
165 | } |
---|
166 | } |
---|
167 | |
---|
168 | void psub_menu::calc_size(int &w, int &h) |
---|
169 | { |
---|
170 | ivec2 ts = wm->font()->Size(); |
---|
171 | w=h=0; |
---|
172 | for (pmenu_item *p=first; p; p=p->next) |
---|
173 | { |
---|
174 | if (p->name()) |
---|
175 | { |
---|
176 | int l=strlen(p->name())*ts.x+8; |
---|
177 | if (p->on_off) l+=ts.x*4; |
---|
178 | if (l>w) w=l; |
---|
179 | } |
---|
180 | h++; |
---|
181 | } |
---|
182 | h=h*(ts.y+1)+8; |
---|
183 | } |
---|
184 | |
---|
185 | void psub_menu::draw(Jwindow *parent, int x, int y) |
---|
186 | { |
---|
187 | if (win) wm->close_window(win); |
---|
188 | |
---|
189 | int w,h,i=0; |
---|
190 | calc_size(w,h); |
---|
191 | ivec2 caa, cbb; |
---|
192 | main_screen->GetClip(caa, cbb); |
---|
193 | if (parent->m_pos.x + w + x >= cbb.x) |
---|
194 | x=cbb.x-1-w-parent->m_pos.x; |
---|
195 | if (h+y+parent->m_pos.y>=cbb.y) |
---|
196 | { |
---|
197 | if (parent->m_pos.y+parent->m_size.y+wm->font()->Size().y>=cbb.y) |
---|
198 | y=-h; |
---|
199 | else y=y-h+wm->font()->Size().y+5; |
---|
200 | } |
---|
201 | |
---|
202 | |
---|
203 | win=wm->CreateWindow(parent->m_pos + ivec2(x, y), |
---|
204 | ivec2(w - Jwindow::left_border() - Jwindow::right_border(), |
---|
205 | h - Jwindow::top_border() - Jwindow::bottom_border()), |
---|
206 | NULL); |
---|
207 | win->freeze(); |
---|
208 | win->m_surf->WidgetBar(ivec2(0, 0), ivec2(w - 1, h - 1), |
---|
209 | wm->bright_color(), wm->medium_color(), |
---|
210 | wm->dark_color()); |
---|
211 | |
---|
212 | int has_flags=0; |
---|
213 | pmenu_item *p=first; |
---|
214 | for (; p; p=p->next) if (p->on_off) has_flags=1; |
---|
215 | x = has_flags ? 3 + wm->font()->Size().x : 3; |
---|
216 | y = 3; |
---|
217 | |
---|
218 | for (p=first; p; p=p->next,i++,y+=wm->font()->Size().y+1) |
---|
219 | p->draw(win,x,y,w-6,0,i==active); |
---|
220 | |
---|
221 | } |
---|
222 | |
---|
223 | void pmenu_item::draw_self(Jwindow *parent, int x, int y, int w, int top, int active) |
---|
224 | { |
---|
225 | int bx=x; |
---|
226 | if (on_off) bx=x-wm->font()->Size().x; |
---|
227 | |
---|
228 | if (!n) |
---|
229 | { |
---|
230 | int h=wm->font()->Size().y; |
---|
231 | parent->m_surf->WidgetBar(ivec2(x, y + h / 2 - 1), |
---|
232 | ivec2(x + w - 1, y + h / 2), wm->dark_color(), |
---|
233 | wm->medium_color(), wm->bright_color()); |
---|
234 | } else |
---|
235 | { |
---|
236 | if (active) |
---|
237 | { |
---|
238 | if (xp!=-1) |
---|
239 | parent->m_surf->xor_bar(bx,y,x+w-1,y+wm->font()->Size().y+1,wm->dark_color()); |
---|
240 | else |
---|
241 | { |
---|
242 | parent->m_surf->Bar(ivec2(bx, y), |
---|
243 | ivec2(x + w - 1, y + wm->font()->Size().y + 1), |
---|
244 | wm->dark_color()); |
---|
245 | wm->font()->PutString(parent->m_surf, ivec2(x+1, y+1), n, wm->medium_color()); |
---|
246 | if (on_off && *on_off) wm->font()->PutString(parent->m_surf, ivec2(bx+1, y+1), "*", wm->medium_color()); |
---|
247 | } |
---|
248 | } else |
---|
249 | { |
---|
250 | if (xp!=-1) |
---|
251 | parent->m_surf->xor_bar(bx,y,x+w-1,y+wm->font()->Size().y+1,wm->dark_color()); |
---|
252 | else |
---|
253 | { |
---|
254 | parent->m_surf->Bar(ivec2(bx, y), |
---|
255 | ivec2(x + w - 1, y + wm->font()->Size().y + 1), |
---|
256 | wm->medium_color()); |
---|
257 | wm->font()->PutString(parent->m_surf, ivec2(x + 1, y + 1), n, wm->bright_color()); |
---|
258 | if (on_off && *on_off) wm->font()->PutString(parent->m_surf, ivec2(bx + 1, y + 1), "*", wm->bright_color()); |
---|
259 | } |
---|
260 | } |
---|
261 | } |
---|
262 | } |
---|
263 | |
---|
264 | void pmenu_item::draw(Jwindow *parent, int x, int y, int w, int top, |
---|
265 | int active) |
---|
266 | { |
---|
267 | if (n) |
---|
268 | { |
---|
269 | if (active) |
---|
270 | { |
---|
271 | draw_self(parent,x,y,w,top,active); |
---|
272 | if (sub) |
---|
273 | { |
---|
274 | if (top) |
---|
275 | sub->draw(parent,x,y+wm->font()->Size().y+2); |
---|
276 | else |
---|
277 | sub->draw(parent,x+w,y); |
---|
278 | } |
---|
279 | } |
---|
280 | else |
---|
281 | { |
---|
282 | if (sub) |
---|
283 | { |
---|
284 | if (top) |
---|
285 | sub->hide(parent,x,y+wm->font()->Size().y+2); |
---|
286 | else |
---|
287 | sub->hide(parent,x+w,y); |
---|
288 | } |
---|
289 | draw_self(parent,x,y,w,top,active); |
---|
290 | |
---|
291 | } |
---|
292 | |
---|
293 | } else draw_self(parent,x,y,w,top,active); |
---|
294 | } |
---|
295 | |
---|
296 | int pmenu::itemx(pmenu_item *p) |
---|
297 | { |
---|
298 | if (p->xp!=-1) return p->xp; |
---|
299 | int w=bar->m_surf->Size().x; |
---|
300 | |
---|
301 | |
---|
302 | int total=0,tw,i=0,x=0; |
---|
303 | for (pmenu_item *pp=top; pp; pp=pp->next,i++) |
---|
304 | { if (pp==p) x=i; |
---|
305 | total++; |
---|
306 | } |
---|
307 | |
---|
308 | |
---|
309 | tw=w/(total+1); |
---|
310 | return tw/2+x*tw; |
---|
311 | } |
---|
312 | |
---|
313 | |
---|
314 | void pmenu::draw(image *screen, int top_only) |
---|
315 | { |
---|
316 | |
---|
317 | } |
---|
318 | |
---|
319 | |
---|
320 | int psub_menu::handle_event(Jwindow *parent, int x, int y, Event &ev) |
---|
321 | { |
---|
322 | int w,h; |
---|
323 | calc_size(w,h); |
---|
324 | |
---|
325 | x=win->m_pos.x; |
---|
326 | y=win->m_pos.y; |
---|
327 | |
---|
328 | int has_flags=0,dx=3; |
---|
329 | for (pmenu_item *p=first; p; p=p->next) if (p->on_off) has_flags=1; |
---|
330 | if (has_flags) dx+=wm->font()->Size().x; |
---|
331 | |
---|
332 | int th=wm->font()->Size().y; |
---|
333 | if (ev.mouse_move.x>=x && ev.mouse_move.y>=y && ev.mouse_move.x<x+w && ev.mouse_move.y<y+h) |
---|
334 | { |
---|
335 | int new_active=(ev.mouse_move.y-y-3)/(th+1); |
---|
336 | if (item_num(new_active)==NULL) new_active=-1; |
---|
337 | |
---|
338 | if (new_active!=active) |
---|
339 | { |
---|
340 | if (active!=-1) |
---|
341 | item_num(active)->draw(win,dx,3+active*(th+1),w-6,0,0); |
---|
342 | active=new_active; |
---|
343 | if (active!=-1) |
---|
344 | item_num(active)->draw(win,dx,3+active*(th+1),w-6,0,1); |
---|
345 | } |
---|
346 | if (ev.type==EV_MOUSE_BUTTON) |
---|
347 | { |
---|
348 | if (active!=-1) |
---|
349 | return item_num(active)->handle_event(win,dx,3+active*(th+1),w-6,0,ev); |
---|
350 | else return 0; |
---|
351 | } else return 1; |
---|
352 | } else if (active!=-1) |
---|
353 | return item_num(active)->handle_event(win,win->m_pos.x+dx,win->m_pos.y+3+active*(th+1),w-6,0,ev); |
---|
354 | else return 0; |
---|
355 | |
---|
356 | |
---|
357 | } |
---|
358 | |
---|
359 | int pmenu_item::handle_event(Jwindow *parent, int x, int y, int w, int top, |
---|
360 | Event &ev) |
---|
361 | { |
---|
362 | x+=parent->m_pos.x; |
---|
363 | y+=parent->m_pos.y; |
---|
364 | if (ev.mouse_move.x>=x && ev.mouse_move.y>=y && ev.mouse_move.x<x+w && |
---|
365 | ev.mouse_move.y<y+wm->font()->Size().y+2) |
---|
366 | { |
---|
367 | if (sub) return 1; |
---|
368 | else |
---|
369 | { |
---|
370 | if (ev.type==EV_MOUSE_BUTTON &&n) |
---|
371 | wm->Push(new Event(id,(char *)this)); |
---|
372 | return 1; |
---|
373 | } |
---|
374 | } else if (sub) |
---|
375 | { |
---|
376 | if (top) |
---|
377 | return sub->handle_event(parent,x,y+wm->font()->Size().y+2,ev); |
---|
378 | else return sub->handle_event(parent,x+w,y,ev); |
---|
379 | } else return 0; |
---|
380 | } |
---|
381 | |
---|
382 | pmenu_item *pmenu::inarea(int mx, int my, image *screen) |
---|
383 | { |
---|
384 | mx-=bar->m_pos.x; |
---|
385 | my-=bar->m_pos.y; |
---|
386 | if (mx<0 || my<0 || mx>=bar->m_surf->Size().x || my>=bar->m_surf->Size().y) return NULL; |
---|
387 | else |
---|
388 | { |
---|
389 | for (pmenu_item *p=top; p; p=p->next) |
---|
390 | { |
---|
391 | if (!p->next) return p; |
---|
392 | else if (itemx(p->next)>mx) return p; |
---|
393 | } |
---|
394 | return NULL; |
---|
395 | } |
---|
396 | } |
---|
397 | |
---|
398 | int psub_menu::own_event(Event &ev) |
---|
399 | { |
---|
400 | if (win && ev.window==win) return 1; else |
---|
401 | for (pmenu_item *p=first; p; p=p->next) |
---|
402 | if (p->own_event(ev)) |
---|
403 | return 1; |
---|
404 | return 0; |
---|
405 | } |
---|
406 | |
---|
407 | int pmenu_item::own_event(Event &ev) |
---|
408 | { |
---|
409 | if (sub) |
---|
410 | return sub->own_event(ev); |
---|
411 | else return 0; |
---|
412 | } |
---|
413 | |
---|
414 | pmenu_item::~pmenu_item() |
---|
415 | { if (n) free(n); if (sub) delete sub; |
---|
416 | } |
---|
417 | |
---|
418 | int pmenu::handle_event(Event &ev, image *screen) |
---|
419 | { |
---|
420 | if (!active && ev.window!=bar) return 0; |
---|
421 | /* |
---|
422 | int yes=0; |
---|
423 | if (ev.window==bar) yes=1; // event in top bar? |
---|
424 | else |
---|
425 | { |
---|
426 | for (pmenu_item *p=top; p && !yes; p=p->next) // event in submenu? |
---|
427 | if (p->own_event(ev)) yes=1; |
---|
428 | } |
---|
429 | if (!yes) return 0; // event is not for us... |
---|
430 | }*/ |
---|
431 | |
---|
432 | switch (ev.type) |
---|
433 | { |
---|
434 | case EV_KEY : |
---|
435 | { |
---|
436 | for (pmenu_item *p=top; p; p=p->next) |
---|
437 | { |
---|
438 | pmenu_item *r=p->find_key(ev.key); |
---|
439 | if (r) |
---|
440 | { |
---|
441 | wm->Push(new Event(r->id,(char *)r)); |
---|
442 | return 1; |
---|
443 | } |
---|
444 | } |
---|
445 | return 0; |
---|
446 | } break; |
---|
447 | case EV_MOUSE_MOVE : |
---|
448 | { |
---|
449 | pmenu_item *new_selection=inarea(ev.mouse_move.x,ev.mouse_move.y,screen); |
---|
450 | if (!new_selection && active && |
---|
451 | active->handle_event(bar,itemx(active),1,itemw(active),1,ev)) |
---|
452 | return 1; |
---|
453 | else if (active!=new_selection) |
---|
454 | { |
---|
455 | if (active) |
---|
456 | active->draw(bar,itemx(active),1,itemw(active),1,0); |
---|
457 | active=new_selection; |
---|
458 | if (active) |
---|
459 | active->draw(bar,itemx(active),1,itemw(active),1,1); |
---|
460 | } |
---|
461 | if (active) return 1; |
---|
462 | else return 0; |
---|
463 | } break; |
---|
464 | case EV_MOUSE_BUTTON : |
---|
465 | { |
---|
466 | if (active) |
---|
467 | { |
---|
468 | if (active->handle_event(bar,itemx(active),1,itemw(active),1,ev)) |
---|
469 | { |
---|
470 | active->draw(bar,itemx(active),1,itemw(active),1,0); |
---|
471 | active=NULL; |
---|
472 | return 1; |
---|
473 | } else return 0; |
---|
474 | } |
---|
475 | else return 0; |
---|
476 | } break; |
---|
477 | } |
---|
478 | return 0; |
---|
479 | } |
---|
480 | |
---|
481 | |
---|