Skip to content

Commit e1b6fca

Browse files
committedJan 1, 2025
ncurses game screen (missing sub lists)
1 parent 7ed3c03 commit e1b6fca

11 files changed

+291
-163
lines changed
 

‎game/game.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -374,10 +374,9 @@ void Game::WinEquip() {
374374
int count = 0;
375375
std::vector<std::string> modifiers;
376376
while (count < 2 && plus != 0) {
377-
Attribute attr = get_better(engine);
378-
int64_t qual = attr.value;
379-
std::string modifier = attr.label;
380-
if (std::find(modifiers.begin(), modifiers.end(), modifier) != modifiers.end()) {
377+
auto [label, qual] = get_better(engine);
378+
std::string modifier = label;
379+
if (ranges::find(modifiers, modifier) != modifiers.end()) {
381380
break; //no repeats
382381
}
383382
if (abs(plus) < abs(qual)) {

‎ncurses/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ set(
1111
ncursesview.hpp
1212
charactercreator.cpp
1313
charactercreator.hpp
14+
gamescreen.cpp
15+
gamescreen.hpp
1416
)
1517

1618
add_library(pq2ncurses SHARED ${SOURCE_FILES})

‎ncurses/charactercreator.cpp

+107-121
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,7 @@ void CharacterCreator::ShowPopup(const std::string &label, const std::vector<std
5353
wrefresh(w);
5454
}
5555

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-
6856
void CharacterCreator::Render() {
69-
wclear(win);
70-
box(win, 0, 0);
7157
LeftAlign(win, "Progress Quest 2", LEFT, 0);
7258
LeftAlign(win, "Name:", LEFT, 2);
7359
if (selected_control == 0) {
@@ -111,7 +97,7 @@ void CharacterCreator::Render() {
11197
LeftAlign(win, std::to_string(new_game->GetWIS()), COLUMN_2, 11);
11298
LeftAlign(win, "CHA:", LEFT, 12);
11399
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);
115101
LeftAlign(win, "TOTAL:", LEFT, 14);
116102
LeftAlign(win, std::to_string(new_game->GetTotal()), COLUMN_2, 14);
117103
const auto colour = new_game->GetTotalColor();
@@ -148,131 +134,131 @@ void CharacterCreator::Render() {
148134
if (show_class_popup) {
149135
ShowPopup("Class:", classes, class_index);
150136
}
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;
163156
}
164157
}
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;
171162
}
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;
177168
}
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
179181
selected_control++;
180-
if (selected_control > CONTROLS) {
181-
selected_control = 0;
182-
}
183182
}
184183
}
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);
198188
}
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);
212191
}
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
215195
selected_control--;
216196
}
217197
}
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--;
222202
}
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++;
257207
}
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();
265237
}
266238
}
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();
273249
new_game->SetName(name);
274250
}
275251
}
276252
}
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+
}
277262
}
278263

264+

‎ncurses/charactercreator.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
#include "ncursesview.hpp"
1010

1111
class CharacterCreator final : public NCursesView {
12-
WINDOW *win = nullptr;
1312
int selected_control = 0;
1413
bool show_race_popup = false;
1514
std::vector<std::string> races;
@@ -24,7 +23,7 @@ class CharacterCreator final : public NCursesView {
2423

2524
public:
2625
CharacterCreator(const std::shared_ptr<Game>& game, const MessageHandler& message_handler);
27-
void Resize(int new_screen_width, int new_screen_height) override;
2826
void Render() override;
27+
void HandleKey(int key) override;
2928

3029
};

0 commit comments

Comments
 (0)
Failed to load comments.