Task_FLATTEN_SURROUNDINGS)
from plomrogue.errors import GameError
from plomrogue.commands import (cmd_ALL, cmd_LOGIN, cmd_QUERY, cmd_PING,
- cmd_TURN, cmd_MAP_LINE, cmd_MAP)
+ cmd_TURN, cmd_MAP_LINE, cmd_MAP, cmd_GET_ANNOTATION,
+ cmd_ANNOTATE)
from plomrogue.io import GameIO
from plomrogue.misc import quote
from plomrogue.things import Thing, ThingPlayer
'LOGIN': cmd_LOGIN,
'TURN': cmd_TURN,
'MAP_LINE': cmd_MAP_LINE,
+ 'GET_ANNOTATION': cmd_GET_ANNOTATION,
+ 'ANNOTATE': cmd_ANNOTATE,
'MAP': cmd_MAP,
'PING': cmd_PING}
self.thing_type = Thing
self.thing_types = {'player': ThingPlayer}
self.sessions = {}
self.map = Map(self.map_geometry.size)
+ self.annotations = {}
if os.path.exists(self.io.save_file):
if not os.path.isfile(self.io.save_file):
raise GameError('save file path refers to non-file')
write(f, 'MAP %s' % (self.map_geometry.size,))
for y, line in self.map.lines():
write(f, 'MAP_LINE %5s %s' % (y, quote(line)))
+ for yx in self.annotations:
+ write(f, 'ANNOTATE %s %s' % (yx, quote(self.annotations[yx])))
- def new_map(self, size):
+ def new_world(self, size):
self.map_geometry = MapGeometrySquare(YX(size.y, size.x))
self.map = Map(self.map_geometry.size)
+ self.annotations = {}
let tui = {
mode: 'chat',
- switch_mode: function(mode_name) {
- if (mode_name == 'explore') {
- explorer.position = game.things[game.player_id];
+ log: [],
+ input_line: '',
+ switch_mode: function(mode_name, keep_pos=false) {
+ if (mode_name == 'study' && !keep_pos) {
+ explorer.position = game.things[game.player_id];
}
this.mode = mode_name;
this.full_refresh();
draw_history: function() {
terminal.drawBox(1, terminal.cols / 2, terminal.rows - 2, terminal.cols / 2);
let i = 0;
- for (let line of chat.history) {
+ for (let line of this.log) {
terminal.write(terminal.rows - 2 - i, terminal.cols / 2, line);
i += 1;
}
}
};
let center_pos = player_position;
- if (tui.mode == 'explore') {
+ if (tui.mode == 'study' || tui.mode == 'annotate') {
map_lines[explorer.position[0]][explorer.position[1]] = '?';
center_pos = explorer.position;
}
},
draw_input_line: function() {
terminal.drawBox(terminal.rows - 1, terminal.cols / 2, 1, terminal.cols / 2);
- terminal.write(terminal.rows - 1, terminal.cols / 2, chat.input_line);
+ if (this.mode == 'chat' || this.mode == 'annotate') {
+ terminal.write(terminal.rows - 1, terminal.cols / 2, '> ' + this.input_line);
+ }
},
log_msg: function(msg) {
let line_length = (terminal.cols / 2);
let chunk = "";
for (let i = 0, x = 0; i < msg.length; i++, x++) {
if (x >= line_length) {
- chat.history.unshift(chunk);
+ this.log.unshift(chunk);
chunk = "";
x = 0;
};
chunk += msg[i];
}
- chat.history.unshift(chunk);
- while (chat.history.length > terminal.rows - 2) {
- chat.history.pop();
+ this.log.unshift(chunk);
+ while (this.log.length > terminal.rows - 2) {
+ this.log.pop();
};
this.draw_history();
},
tui.log_msg("f - flatten surroundings");
tui.log_msg("e - write following ASCII character");
tui.log_msg("c - switch to chat mode");
- tui.log_msg("? - switch to explore mode");
+ tui.log_msg("? - switch to investigation mode");
tui.log_msg("");
- tui.log_msg("explore mode commands:");
+ tui.log_msg("investigation mode commands:");
tui.log_msg("w, a, s, d - move question mark");
+ tui.log_msg("A - annotate terrain");
tui.log_msg("c - switch to chat mode");
tui.log_msg("p - switch to play mode");
tui.log_msg("");
},
draw_info: function() {
- terminal.drawBox(0, terminal.cols / 2, terminal.rows, terminal.cols / 2);
- let lines = ['unfinished info screen'];
- for (let y = 0, i = 0; y < terminal.rows && i < lines.length; y++, i++) {
+ terminal.drawBox(1, terminal.cols / 2, terminal.rows - 2, terminal.cols / 2);
+ let lines = explorer.get_info();
+ for (let y = 1, i = 0; y < terminal.rows && i < lines.length; y++, i++) {
terminal.write(y, terminal.cols / 2, lines[i]);
}
},
full_refresh: function() {
this.draw_map();
this.draw_turn_line();
- this.draw_history();
+ if (this.mode == 'study' || this.mode == 'annotate') {
+ this.draw_info();
+ } else {
+ this.draw_history();
+ }
this.draw_input_line();
this.refresh();
}
player_id: 0
}
-let chat = {
- input_line: "",
- history: [],
-}
-
terminal.initialize();
tui.log_help();
tui.full_refresh();
game.map_size = parser.parse_yx(tokens[1]);
game.map = tokens[2]
} else if (tokens[0] === 'GAME_STATE_COMPLETE') {
+ explorer.empty_info_db();
+ if (tui.mode == 'study') {
+ explorer.query_info();
+ }
tui.draw_turn_line();
tui.draw_map();
tui.refresh();
} else if (tokens[0] === 'META') {
tui.log_msg('@ ' + tokens[1]);
tui.refresh();
+ } else if (tokens[0] === 'ANNOTATION') {
+ let position = parser.parse_yx(tokens[1]);
+ explorer.update_info_db(position, tokens[2]);
} else if (tokens[0] === 'UNHANDLED_INPUT') {
tui.log_msg('? unknown command');
tui.refresh();
let explorer = {
position: [0,0],
+ info_db: {},
move: function(direction) {
let try_pos = [0,0];
try_pos[0] = this.position[0];
!(try_pos[0] >= game.map_size[0])
&& !(try_pos[1] >= game.map_size[1])) {
this.position = try_pos;
+ this.query_info();
tui.draw_map();
tui.draw_info();
tui.refresh();
}
+ },
+ update_info_db: function(yx, str) {
+ this.info_db[yx] = str;
+ if (tui.mode == 'study') {
+ tui.draw_info();
+ tui.refresh();
+ }
+ },
+ empty_info_db: function() {
+ this.info_db = {};
+ if (tui.mode == 'study') {
+ tui.draw_info();
+ tui.refresh();
+ }
+ },
+ query_info: function() {
+ websocket.send("GET_ANNOTATION Y:" + explorer.position[0] + ",X:" + explorer.position[1]);
+ },
+ get_info: function() {
+ if (this.position in this.info_db) {
+ return [this.info_db[this.position]];
+ } else {
+ return ['waiting …'];
+ }
+ },
+ annotate: function(msg) {
+ if (msg.length == 0) {
+ msg = " "; // triggers annotation deletion
+ }
+ websocket.send("ANNOTATE Y:" + explorer.position[0] + ",X:" + explorer.position[1] + " " + quote(msg));
}
}
document.addEventListener('keydown', (event) => {
if (tui.mode == 'chat') {
if (event.key.length === 1) {
- chat.input_line += event.key;
+ tui.input_line += event.key;
tui.draw_input_line();
tui.refresh();
} else if (event.key == 'Backspace') {
- chat.input_line = chat.input_line.slice(0, -1);
+ tui.input_line = tui.input_line.slice(0, -1);
tui.draw_input_line();
tui.refresh();
} else if (event.key == 'Enter') {
- let [tokens, token_starts] = parser.tokenize(chat.input_line);
+ let [tokens, token_starts] = parser.tokenize(tui.input_line);
if (tokens.length > 0 && tokens[0].length > 0) {
if (tokens[0][0] == '/') {
if (tokens[0] == '/play') {
tui.switch_mode('play');
- } else if (tokens[0] == '/?') {
+ } else if (tokens[0] == '/study') {
+ tui.switch_mode('study');
+ } else if (tokens[0] == '/help') {
tui.log_help();
tui.refresh();
} else if (tokens[0] == '/login') {
}
} else if (tokens[0] == '/msg') {
if (tokens.length > 2) {
- let msg = chat.input_line.slice(token_starts[2]);
+ let msg = tui.input_line.slice(token_starts[2]);
websocket.send('QUERY ' + quote(tokens[1]) + ' ' + quote(msg));
} else {
tui.log_msg('? need message target and message');
tui.log_msg('? unknown command');
}
} else {
- websocket.send('ALL ' + quote(chat.input_line));
+ websocket.send('ALL ' + quote(tui.input_line));
}
}
- chat.input_line = '';
+ tui.input_line = '';
tui.draw_input_line();
tui.refresh();
}
- } else if (tui.mode == 'play') {
+ } else if (tui.mode == 'play') {
if (event.key === 'c') {
tui.switch_mode('chat');
} else if (event.key === 'e') {
tui.switch_mode('edit');
} else if (event.key === '?') {
- tui.switch_mode('explore');
+ tui.switch_mode('study');
} else if (event.key === 'F1') {
tui.log_help();
tui.refresh();
websocket.send("TASK:WRITE " + quote(event.key));
}
tui.switch_mode('play');
- } else if (tui.mode == 'explore') {
+ } else if (tui.mode == 'study') {
if (event.key === 'c') {
tui.switch_mode('chat');
} else if (event.key == 'p') {
explorer.move('up');
} else if (event.key === 's') {
explorer.move('down');
- };
+ } else if (event.key === 'A') {
+ tui.switch_mode('annotate');
+ tui.draw_info();
+ tui.refresh();
+ };
+ } else if (tui.mode == 'annotate') {
+ if (event.key.length === 1) {
+ tui.input_line += event.key;
+ tui.draw_input_line();
+ tui.refresh();
+ } else if (event.key == 'Backspace') {
+ tui.input_line = tui.input_line.slice(0, -1);
+ tui.draw_input_line();
+ tui.refresh();
+ } else if (event.key == 'Enter') {
+ explorer.annotate(tui.input_line);
+ tui.input_line = '';
+ tui.switch_mode('study', true);
+ }
}
}, false);