@@ -53,21 +53,7 @@ void CharacterCreator::ShowPopup(const std::string &label, const std::vector<std
53
53
wrefresh (w);
54
54
}
55
55
56
-
57
- void CharacterCreator::Resize (const int new_screen_width, const int new_screen_height) {
58
- NCursesView::Resize (new_screen_width, new_screen_height);
59
- delwin (win);
60
- constexpr int required_width = 80 ;
61
- constexpr int required_height = 24 ;
62
- win = newwin (required_height, required_width, 0 , 0 );
63
- keypad (win, true );
64
- nodelay (win, true );
65
- wtimeout (win, 100 );
66
- }
67
-
68
56
void CharacterCreator::Render () {
69
- wclear (win);
70
- box (win, 0 , 0 );
71
57
LeftAlign (win, " Progress Quest 2" , LEFT, 0 );
72
58
LeftAlign (win, " Name:" , LEFT, 2 );
73
59
if (selected_control == 0 ) {
@@ -111,7 +97,7 @@ void CharacterCreator::Render() {
111
97
LeftAlign (win, std::to_string (new_game->GetWIS ()), COLUMN_2, 11 );
112
98
LeftAlign (win, " CHA:" , LEFT, 12 );
113
99
LeftAlign (win, std::to_string (new_game->GetCHA ()), COLUMN_2, 12 );
114
- LeftAlign (win, std::string (COLUMN_2 + 6 , ' - ' ), LEFT, 13 );
100
+ mvwhline (win, 13 , LEFT, ACS_HLINE, COLUMN_2 + 6 );
115
101
LeftAlign (win, " TOTAL:" , LEFT, 14 );
116
102
LeftAlign (win, std::to_string (new_game->GetTotal ()), COLUMN_2, 14 );
117
103
const auto colour = new_game->GetTotalColor ();
@@ -148,131 +134,131 @@ void CharacterCreator::Render() {
148
134
if (show_class_popup) {
149
135
ShowPopup (" Class:" , classes, class_index);
150
136
}
151
- wrefresh (win);
152
- const int ch = wgetch (win);
153
- if (ch != ERR) {
154
- if (ch == 27 ) {
155
- if (show_race_popup) {
156
- show_race_popup = false ;
157
- }
158
- else if (show_class_popup) {
159
- show_class_popup = false ;
160
- }
161
- else {
162
- message_handler (" cancel" );
137
+ }
138
+
139
+ void CharacterCreator::HandleKey (const int key) {
140
+ if (key == 27 ) {
141
+ if (show_race_popup) {
142
+ show_race_popup = false ;
143
+ }
144
+ else if (show_class_popup) {
145
+ show_class_popup = false ;
146
+ }
147
+ else {
148
+ message_handler (" cancel" );
149
+ }
150
+ }
151
+ else if (key == ' \t ' ) {
152
+ if (show_race_popup) {
153
+ race_index++;
154
+ if (race_index == static_cast <int >(races.size ())) {
155
+ race_index = 0 ;
163
156
}
164
157
}
165
- else if (ch == ' \t ' ) {
166
- if (show_race_popup) {
167
- race_index++;
168
- if (race_index == static_cast <int >(races.size ())) {
169
- race_index = 0 ;
170
- }
158
+ else if (show_class_popup) {
159
+ class_index++;
160
+ if (class_index == static_cast <int >(classes.size ())) {
161
+ class_index = 0 ;
171
162
}
172
- else if (show_class_popup) {
173
- class_index++;
174
- if (class_index == static_cast < int >(classes. size ())) {
175
- class_index = 0 ;
176
- }
163
+ }
164
+ else {
165
+ selected_control++;
166
+ if (selected_control > CONTROLS) {
167
+ selected_control = 0 ;
177
168
}
178
- else {
169
+ }
170
+ }
171
+ else if (key == KEY_DOWN) {
172
+ if (show_race_popup) {
173
+ race_index = std::min (race_index + 1 , static_cast <int >(races.size ()) - 1 );
174
+ }
175
+ else if (show_class_popup) {
176
+ class_index = std::min (class_index + 1 , static_cast <int >(classes.size ()) - 1 );
177
+ }
178
+ else {
179
+ selected_control = std::min (selected_control + 1 , CONTROLS);
180
+ if (selected_control == 1 || selected_control == 5 ) { // 2nd column controls go down to next row
179
181
selected_control++;
180
- if (selected_control > CONTROLS) {
181
- selected_control = 0 ;
182
- }
183
182
}
184
183
}
185
- else if (ch == KEY_DOWN) {
186
- if (show_race_popup) {
187
- race_index = std::min (race_index + 1 , static_cast <int >(races.size ()) - 1 );
188
- }
189
- else if (show_class_popup) {
190
- class_index = std::min (class_index + 1 , static_cast <int >(classes.size ()) - 1 );
191
- }
192
- else {
193
- selected_control = std::min (selected_control + 1 , CONTROLS);
194
- if (selected_control == 1 || selected_control == 5 ) { // 2nd column controls go down to next row
195
- selected_control++;
196
- }
197
- }
184
+ }
185
+ else if (key == KEY_UP) {
186
+ if (show_race_popup) {
187
+ race_index = std::max (race_index - 1 , 0 );
198
188
}
199
- else if (ch == KEY_UP) {
200
- if (show_race_popup) {
201
- race_index = std::max (race_index - 1 , 0 );
202
- }
203
- else if (show_class_popup) {
204
- class_index = std::max (class_index - 1 , 0 );
205
- }
206
- else {
207
- selected_control = std::max (selected_control - 1 , 0 );
208
- if (selected_control == 1 || selected_control == 5 ) { // skip 2nd column controls
209
- selected_control--;
210
- }
211
- }
189
+ else if (show_class_popup) {
190
+ class_index = std::max (class_index - 1 , 0 );
212
191
}
213
- else if (ch == KEY_LEFT) {
214
- if (!show_race_popup && !show_class_popup && (selected_control == 1 || selected_control == 5 )) {
192
+ else {
193
+ selected_control = std::max (selected_control - 1 , 0 );
194
+ if (selected_control == 1 || selected_control == 5 ) { // skip 2nd column controls
215
195
selected_control--;
216
196
}
217
197
}
218
- else if (ch == KEY_RIGHT) {
219
- if (!show_race_popup && !show_class_popup && (selected_control == 0 || selected_control == 4 ) ) {
220
- selected_control++;
221
- }
198
+ }
199
+ else if (key == KEY_LEFT ) {
200
+ if (!show_race_popup && !show_class_popup && (selected_control == 1 || selected_control == 5 )) {
201
+ selected_control--;
222
202
}
223
- else if (ch == ' \n ' || ch == ' ' ) {
224
- if (show_race_popup) {
225
- const auto race = races[race_index];
226
- new_game->SetRace (race);
227
- show_race_popup = false ;
228
- }
229
- else if (show_class_popup) {
230
- const auto cls = classes[class_index];
231
- new_game->SetClass (cls);
232
- show_class_popup = false ;
233
- }
234
- else if (selected_control == 1 ) {
235
- new_game->GenerateName ();
236
- }
237
- else if (selected_control == 2 ) {
238
- show_race_popup = true ;
239
- race_index = static_cast <int >(std::ranges::find (races, new_game->GetRace ()) - races.begin ());
240
- }
241
- else if (selected_control == 3 ) {
242
- show_class_popup = true ;
243
- class_index = static_cast <int >(std::ranges::find (classes, new_game->GetClass ()) - classes.begin ());
244
- }
245
- else if (selected_control == 4 ) {
246
- new_game->ReRoll ();
247
- }
248
- else if (selected_control == 5 ) {
249
- if (new_game->CanUnroll ()) {
250
- new_game->UnRoll ();
251
- }
252
- }
253
- else if (selected_control == 6 ) {
254
- new_game->ConfirmCharacter ();
255
- message_handler (" start" );
256
- }
203
+ }
204
+ else if (key == KEY_RIGHT) {
205
+ if (!show_race_popup && !show_class_popup && (selected_control == 0 || selected_control == 4 )) {
206
+ selected_control++;
257
207
}
258
- else if (ch == KEY_BACKSPACE) {
259
- if (selected_control == 0 ) {
260
- std::string name = new_game->GetName ();
261
- if (!name.empty ()) {
262
- name.pop_back ();
263
- new_game->SetName (name);
264
- }
208
+ }
209
+ else if (key == ' \n ' || key == ' ' ) {
210
+ if (show_race_popup) {
211
+ const auto race = races[race_index];
212
+ new_game->SetRace (race);
213
+ show_race_popup = false ;
214
+ }
215
+ else if (show_class_popup) {
216
+ const auto cls = classes[class_index];
217
+ new_game->SetClass (cls);
218
+ show_class_popup = false ;
219
+ }
220
+ else if (selected_control == 1 ) {
221
+ new_game->GenerateName ();
222
+ }
223
+ else if (selected_control == 2 ) {
224
+ show_race_popup = true ;
225
+ race_index = static_cast <int >(std::ranges::find (races, new_game->GetRace ()) - races.begin ());
226
+ }
227
+ else if (selected_control == 3 ) {
228
+ show_class_popup = true ;
229
+ class_index = static_cast <int >(std::ranges::find (classes, new_game->GetClass ()) - classes.begin ());
230
+ }
231
+ else if (selected_control == 4 ) {
232
+ new_game->ReRoll ();
233
+ }
234
+ else if (selected_control == 5 ) {
235
+ if (new_game->CanUnroll ()) {
236
+ new_game->UnRoll ();
265
237
}
266
238
}
267
- else if ((ch >= 65 && ch <= 90 ) || (ch >= 97 && ch <= 122 ) || (ch >= 48 && ch <= 57 )) {
268
- if (selected_control == 0 ) {
269
- std::string name = new_game->GetName ();
270
- if (name.length () < 30 ) {
271
- name += static_cast <char >(ch);
272
- }
239
+ else if (selected_control == 6 ) {
240
+ new_game->ConfirmCharacter ();
241
+ message_handler (" start" );
242
+ }
243
+ }
244
+ else if (key == KEY_BACKSPACE) {
245
+ if (selected_control == 0 ) {
246
+ std::string name = new_game->GetName ();
247
+ if (!name.empty ()) {
248
+ name.pop_back ();
273
249
new_game->SetName (name);
274
250
}
275
251
}
276
252
}
253
+ else if ((key >= 65 && key <= 90 ) || (key >= 97 && key <= 122 ) || (key >= 48 && key <= 57 )) {
254
+ if (selected_control == 0 ) {
255
+ std::string name = new_game->GetName ();
256
+ if (name.length () < 30 ) {
257
+ name += static_cast <char >(key);
258
+ }
259
+ new_game->SetName (name);
260
+ }
261
+ }
277
262
}
278
263
264
+
0 commit comments