summaryrefslogtreecommitdiff
path: root/src/gui/button.c
blob: 03addf8df611029f2ab5cc362a35f4d698353ee8 (plain)
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
#include <gui/button.h>
#include <stdlib.h>
#include <assert.h>
#include <common/mem.h>
#include <string.h>
#include <MLV/MLV_all.h>
#include <gui/component.h>

bool button_is_selected(int x, int y, Button *button) {
  assert(x >= 0);
  assert(y >= 0);
  assert(button != NULL);
  int x1 = button->component.x_pos;
  int y1 = button->component.y_pos;
  int x2 = button->component.x_pos + button->component.width;
  int y2 = button->component.y_pos + button->component.height;
  if (x >= x1 && x <= x2 && y >= y1 && y <= y2) {
    return true;
  }
  return false;
}

void button_print(Component *parameterSelf) {
  assert(parameterSelf != NULL);
  Button *self = (Button *) parameterSelf;
  MLV_draw_adapted_text_box(self->component.x_pos, self->component.y_pos, self->label, self->sizeInterligne,
                            MLV_COLOR_BLACK, MLV_COLOR_WHITE, MLV_COLOR_DARK_GREY, MLV_TEXT_CENTER);
}

void button_click_test(int x, int y, Component *parameterSelf) {
  assert(x >= 0);
  assert(y >= 0);
  assert(parameterSelf != NULL);
  Button *self = (Button *) parameterSelf;
  if (button_is_selected(x, y, self) && (mode == WAITING_BUTTON_SHOW || mode == WAITING_BUTTON_HIDE)) {
  }
}

void button_click_add_constraint(int x, int y, Component *parameterSelf) {
  assert(x >= 0);
  assert(y >= 0);
  assert(parameterSelf != NULL);
  Button *self = (Button *) parameterSelf;
  if (button_is_selected(x, y, self) && (mode == WAITING_BUTTON_SHOW || mode == WAITING_BUTTON_HIDE)) {
    mode = INSERT_ORIGIN;
  }
}

void button_click_show_hide(int x, int y, Component *parameterSelf) {
  assert(x >= 0);
  assert(y >= 0);
  assert(parameterSelf != NULL);
  Button *self = (Button *) parameterSelf;
  if (button_is_selected(x, y, self)) {
    if (mode == WAITING_BUTTON_SHOW) {
      mode = WAITING_BUTTON_HIDE;
    } else if (mode == WAITING_BUTTON_HIDE) {
      mode = WAITING_BUTTON_SHOW;
    }
  }
}

void button_click_exit(int x, int y, Component *parameterSelf) {
  assert(x >= 0);
  assert(y >= 0);
  assert(parameterSelf != NULL);
  Button *self = (Button *) parameterSelf;
  if (button_is_selected(x, y, self) && (mode == WAITING_BUTTON_SHOW || mode == WAITING_BUTTON_HIDE)) {
    mode = EXITING;
  }
}

void button_click_less_frame(int x, int y, Component *parameterSelf) {
  assert(x >= 0);
  assert(y >= 0);
  assert(parameterSelf != NULL);
  Button *self = (Button *) parameterSelf;
  if (button_is_selected(x, y, self) && (mode == WAITING_BUTTON_SHOW || mode == WAITING_BUTTON_HIDE)) {
    if (frame > 2) {
      frame = frame / 2;
      sprintf(labelFrame,"%03d frames", frame);
      mode = PRINTING_BUTTONS;
    }
  }
}

void button_click_more_frame(int x, int y, Component *parameterSelf) {
  assert(x >= 0);
  assert(y >= 0);
  assert(parameterSelf != NULL);
  Button *self = (Button *) parameterSelf;
  if (button_is_selected(x, y, self) && (mode == WAITING_BUTTON_SHOW || mode == WAITING_BUTTON_HIDE)) {
    if (frame < 256) {
      frame = frame * 2;
      sprintf(labelFrame,"%03d frames", frame);
      mode = PRINTING_BUTTONS;
    }
  }
}

void button_click_rendering(int x,int y, Component *parameterSelf) {
  assert(x >= 0);
  assert(y >= 0);
  assert(parameterSelf != NULL);
  Button *self = (Button *) parameterSelf;
  if (button_is_selected(x, y, self) && (mode == WAITING_BUTTON_SHOW || mode == WAITING_BUTTON_HIDE)) {
    mode = RENDERING;
  }
}

void button_click_none(int x, int y, Component *parameterSelf) {
  assert(x >= 0);
  assert(y >= 0);
  assert(parameterSelf != NULL);
}


void
button_init(Button *button, const char *text, int sizeInterligne, int x_pos, int y_pos, ClickHandler clickHandler) {
  assert(button != NULL);
  assert(text != NULL);
  assert(sizeInterligne >= 0);
  assert(x_pos >= 0);
  assert(y_pos >= 0);
  button->label = malloc_or_die(sizeof(char) * (strlen(text) + 1));
  strcpy(button->label, text);
  button->sizeInterligne = sizeInterligne;
  MLV_get_size_of_adapted_text_box(text, sizeInterligne, &button->component.width, &button->component.height);
  button->component.x_pos = x_pos;
  button->component.y_pos = y_pos;
  button->component.print_method = button_print;
  button->component.click_handler = clickHandler;
}