summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2007-06-30 17:51:50 +0000
committerpeter1138 <peter1138@openttd.org>2007-06-30 17:51:50 +0000
commit59032746f6d47802ab237189530a61df108111db (patch)
treea6b3081588946bcb48e57bc281cf907fe201adb7 /src
parent170292e75f2277e8ed3930b6c42549a4d87b778a (diff)
downloadopenttd-59032746f6d47802ab237189530a61df108111db.tar.xz
(svn r10401) -Feature: new sign editor features including switching to previous/next sign (XeryusTC)
Diffstat (limited to 'src')
-rw-r--r--src/lang/english.txt4
-rw-r--r--src/main_gui.cpp11
-rw-r--r--src/signs.h2
-rw-r--r--src/signs_gui.cpp170
4 files changed, 175 insertions, 12 deletions
diff --git a/src/lang/english.txt b/src/lang/english.txt
index 677d2b28f..044942361 100644
--- a/src/lang/english.txt
+++ b/src/lang/english.txt
@@ -3361,4 +3361,8 @@ STR_VEHICLE_NAME :{VEHICLE}
STR_NAME_MUST_BE_UNIQUE :{WHITE}Name must be unique
+#### Improved sign GUI
+STR_NEXT_SIGN_TOOLTIP :{BLACK}Go to next sign
+STR_PREVIOUS_SIGN_TOOLTIP :{BLACK}Go to previous sign
+
########
diff --git a/src/main_gui.cpp b/src/main_gui.cpp
index 5d1634cab..1113c66c3 100644
--- a/src/main_gui.cpp
+++ b/src/main_gui.cpp
@@ -82,9 +82,6 @@ void HandleOnEditText(const char *str)
_cmd_text = str;
switch (_rename_what) {
- case 0: // Rename a s sign, if string is empty, delete sign
- DoCommandP(0, id, 0, NULL, CMD_RENAME_SIGN | CMD_MSG(STR_280C_CAN_T_CHANGE_SIGN_NAME));
- break;
case 1: // Rename a waypoint
if (*str == '\0') return;
DoCommandP(0, id, 0, NULL, CMD_RENAME_WAYPOINT | CMD_MSG(STR_CANT_CHANGE_WAYPOINT_NAME));
@@ -341,14 +338,6 @@ void ShowNetworkGiveMoneyWindow(PlayerID player)
}
#endif /* ENABLE_NETWORK */
-void ShowRenameSignWindow(const Sign *si)
-{
- _rename_id = si->index;
- _rename_what = 0;
- SetDParam(0, si->index);
- ShowQueryString(STR_SIGN_NAME, STR_280B_EDIT_SIGN_TEXT, 30, 180, NULL, CS_ALPHANUMERAL);
-}
-
void ShowRenameWaypointWindow(const Waypoint *wp)
{
int id = wp->index;
diff --git a/src/signs.h b/src/signs.h
index 49ccefedc..82a022abf 100644
--- a/src/signs.h
+++ b/src/signs.h
@@ -64,7 +64,7 @@ VARDEF bool _sign_sort_dirty;
void UpdateAllSignVirtCoords();
void PlaceProc_Sign(TileIndex tile);
-/* misc.cpp */
+/* signs_gui.cpp */
void ShowRenameSignWindow(const Sign *si);
void ShowSignList();
diff --git a/src/signs_gui.cpp b/src/signs_gui.cpp
index 67a2d628b..0495de127 100644
--- a/src/signs_gui.cpp
+++ b/src/signs_gui.cpp
@@ -16,6 +16,7 @@
#include "debug.h"
#include "variables.h"
#include "helpers.hpp"
+#include "command.h"
static const Sign **_sign_sort;
static uint _num_sign_sort;
@@ -151,3 +152,172 @@ void ShowSignList()
w->resize.height = w->height - 10 * 7; // minimum if 5 in the list
}
}
+
+/* Edit sign window stuff */
+
+struct editsign_d : querystr_d {
+ SignID cur_sign;
+};
+
+static char _edit_str_buf[64];
+
+enum QueryEditSignWidgets {
+ QUERY_EDIT_SIGN_WIDGET_TEXT = 3,
+ QUERY_EDIT_SIGN_WIDGET_OK,
+ QUERY_EDIT_SIGN_WIDGET_CANCEL,
+ QUERY_EDIT_SIGN_WIDGET_DELETE,
+ QUERY_EDIT_SIGN_WIDGET_PREVIOUS = QUERY_EDIT_SIGN_WIDGET_DELETE + 2,
+ QUERY_EDIT_SIGN_WIDGET_NEXT,
+};
+
+static void UpdateSignEditWindow(Window *w, const Sign *si)
+{
+ /* Display an empty string when the sign hasnt been edited yet */
+ if (si->str != STR_280A_SIGN) {
+ SetDParam(0, si->index);
+ GetString(_edit_str_buf, STR_SIGN_NAME, lastof(_edit_str_buf));
+ } else {
+ GetString(_edit_str_buf, STR_EMPTY, lastof(_edit_str_buf));
+ }
+ _edit_str_buf[lengthof(_edit_str_buf) - 1] = '\0';
+
+ WP(w, editsign_d).cur_sign = si->index;
+ InitializeTextBuffer(&WP(w, querystr_d).text, _edit_str_buf, 31, 255); // Allow 31 characters (including \0)
+
+ InvalidateWidget(w, QUERY_EDIT_SIGN_WIDGET_TEXT);
+}
+
+static void RenameSign(SignID index, const char *text)
+{
+ _cmd_text = text;
+ DoCommandP(0, index, 0, NULL, CMD_RENAME_SIGN | CMD_MSG(STR_280C_CAN_T_CHANGE_SIGN_NAME));
+}
+
+static void QuerySignEditWndProc(Window *w, WindowEvent *e)
+{
+ editsign_d *qs = &WP(w, editsign_d);
+ Sign *si;
+ uint sign_index = 0;
+
+ switch (e->event) {
+ case WE_CREATE:
+ SETBIT(_no_scroll, SCROLL_EDIT);
+ break;
+
+ case WE_PAINT:
+ SetDParam(0, qs->caption);
+ DrawWindowWidgets(w);
+ DrawEditBox(w, qs, QUERY_EDIT_SIGN_WIDGET_TEXT);
+ break;
+
+ case WE_CLICK:
+ switch (e->we.click.widget) {
+ case QUERY_EDIT_SIGN_WIDGET_PREVIOUS:
+ if (_sign_sort_dirty) GlobalSortSignList();
+ sign_index = _sign_sort[_num_sign_sort - 1]->index;
+ for (uint i = 1; i < _num_sign_sort; i++) {
+ if (qs->cur_sign == _sign_sort[i]->index) {
+ sign_index = _sign_sort[i - 1]->index;
+ break;
+ }
+ }
+ si = GetSign(sign_index);
+
+ /* Scroll to sign and reopen window */
+ ScrollMainWindowToTile(TileVirtXY(si->x, si->y));
+ UpdateSignEditWindow(w, si);
+ break;
+
+ case QUERY_EDIT_SIGN_WIDGET_NEXT:
+ if (_sign_sort_dirty) GlobalSortSignList();
+ sign_index = _sign_sort[0]->index;
+ for (uint i = 0; i < _num_sign_sort-1; i++) {
+ if (qs->cur_sign == _sign_sort[i]->index) {
+ sign_index = _sign_sort[i + 1]->index;
+ break;
+ }
+ }
+ si = GetSign(sign_index);
+
+ /* Scroll to sign and reopen window */
+ ScrollMainWindowToTile(TileVirtXY(si->x, si->y));
+ UpdateSignEditWindow(w, si);
+ break;
+
+ case QUERY_EDIT_SIGN_WIDGET_DELETE:
+ /* Only need to set the buffer to null, the rest is handled as the OK button */
+ DeleteTextBufferAll(&qs->text);
+ /* FALL THROUGH */
+
+ case QUERY_EDIT_SIGN_WIDGET_OK:
+ RenameSign(qs->cur_sign, qs->text.buf);
+ /* FALL THROUGH */
+
+ case QUERY_EDIT_SIGN_WIDGET_CANCEL:
+ DeleteWindow(w);
+ break;
+ }
+ break;
+
+ case WE_KEYPRESS:
+ switch (HandleEditBoxKey(w, qs, QUERY_EDIT_SIGN_WIDGET_TEXT, e)) {
+ case 1: // Enter pressed, confirms change
+ RenameSign(qs->cur_sign, qs->text.buf);
+ /* FALL THROUGH */
+
+ case 2: // ESC pressed, closes window, abandons changes
+ DeleteWindow(w);
+ break;
+ }
+ break;
+
+ case WE_MOUSELOOP:
+ HandleEditBox(w, qs, QUERY_EDIT_SIGN_WIDGET_TEXT);
+ break;
+
+ case WE_DESTROY:
+ CLRBIT(_no_scroll, SCROLL_EDIT);
+ break;
+ }
+}
+
+static const Widget _query_sign_edit_widgets[] = {
+{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
+{ WWT_CAPTION, RESIZE_NONE, 14, 11, 259, 0, 13, STR_012D, STR_NULL },
+{ WWT_PANEL, RESIZE_NONE, 14, 0, 259, 14, 29, STR_NULL, STR_NULL },
+{ WWT_PANEL, RESIZE_NONE, 14, 2, 257, 16, 27, STR_NULL, STR_NULL }, // Text field
+{ WWT_TEXTBTN, RESIZE_NONE, 14, 0, 60, 30, 41, STR_012F_OK, STR_NULL },
+{ WWT_TEXTBTN, RESIZE_NONE, 14, 61, 120, 30, 41, STR_012E_CANCEL, STR_NULL },
+{ WWT_TEXTBTN, RESIZE_NONE, 14, 121, 180, 30, 41, STR_0290_DELETE, STR_NULL },
+{ WWT_PANEL, RESIZE_NONE, 14, 181, 237, 30, 41, STR_NULL, STR_NULL },
+{ WWT_TEXTBTN, RESIZE_NONE, 14, 238, 248, 30, 41, STR_6819, STR_PREVIOUS_SIGN_TOOLTIP },
+{ WWT_TEXTBTN, RESIZE_NONE, 14, 249, 259, 30, 41, STR_681A, STR_NEXT_SIGN_TOOLTIP },
+{ WIDGETS_END },
+};
+
+static const WindowDesc _query_sign_edit_desc = {
+ 190, 170, 260, 42,
+ WC_QUERY_STRING, WC_NONE,
+ WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
+ _query_sign_edit_widgets,
+ QuerySignEditWndProc
+};
+
+void ShowRenameSignWindow(const Sign *si)
+{
+ Window *w;
+
+ /* Delete all other edit windows and the save window */
+ DeleteWindowById(WC_QUERY_STRING, 0);
+ DeleteWindowById(WC_SAVELOAD, 0);
+
+ w = AllocateWindowDesc(&_query_sign_edit_desc);
+
+ WP(w, editsign_d).caption = STR_280B_EDIT_SIGN_TEXT;
+ WP(w, editsign_d).afilter = CS_ALPHANUMERAL;
+ LowerWindowWidget(w, QUERY_EDIT_SIGN_WIDGET_TEXT);
+
+ UpdateSignEditWindow(w, si);
+}
+
+