Wed, 20 Jul 2016 14:48:47 +0300
Made Range not include the 'max' parameter, replaced a lot of for()-loops with C++11-style range-for-loops
14
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
1 | /* |
109 | 2 | Copyright 2014 - 2016 Teemu Piippo |
14
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
3 | All rights reserved. |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
4 | |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
5 | Redistribution and use in source and binary forms, with or without |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
6 | modification, are permitted provided that the following conditions |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
7 | are met: |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
8 | |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
9 | 1. Redistributions of source code must retain the above copyright |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
10 | notice, this list of conditions and the following disclaimer. |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
11 | 2. Redistributions in binary form must reproduce the above copyright |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
12 | notice, this list of conditions and the following disclaimer in the |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
13 | documentation and/or other materials provided with the distribution. |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
14 | 3. Neither the name of the copyright holder nor the names of its |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
15 | contributors may be used to endorse or promote products derived from |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
16 | this software without specific prior written permission. |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
17 | |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
20 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
22 | OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
23 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
24 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
29 | */ |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
30 | |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
31 | #pragma once |
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
32 | #include "main.h" |
72 | 33 | #include "network/ipaddress.h" |
34 | #include "coloredline.h" | |
35 | #include "network/rconsession.h" | |
89
777b2a10b835
Add support for standard pdcurses, thanks to Leonard for pointing out the solutions to a few mysteries.
Teemu Piippo <tsapii@utu.fi>
parents:
88
diff
changeset
|
36 | #include "coloredline.h" |
777b2a10b835
Add support for standard pdcurses, thanks to Leonard for pointing out the solutions to a few mysteries.
Teemu Piippo <tsapii@utu.fi>
parents:
88
diff
changeset
|
37 | |
88
08ccaf26cffd
Now works with MSVC 2010/pdcurses-win32a
Teemu Piippo <tsapii@utu.fi>
parents:
83
diff
changeset
|
38 | BEGIN_ZFC_NAMESPACE |
14
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
39 | |
72 | 40 | class Interface |
14
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
41 | { |
72 | 42 | public: |
43 | enum InputState | |
44 | { | |
45 | INPUTSTATE_NORMAL, | |
46 | INPUTSTATE_ADDRESS, | |
47 | INPUTSTATE_PASSWORD, | |
48 | INPUTSTATE_CONFIRM_DISCONNECTION, | |
49 | }; | |
50 | ||
51 | Interface(); | |
52 | void handle_input(); | |
53 | void render(); | |
54 | void render_full(); | |
55 | void set_title (const String& message); | |
56 | void update_statusbar(); | |
57 | void connect (String address, String password); | |
58 | void set_player_names (const StringList& names); | |
59 | void need_refresh(); | |
60 | void tab_complete (const String& part, String complete); | |
127
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
61 | RCONSession* get_session() { return &m_session; } |
105
b4466472aecd
Added some basic IRC-like commands that can be used to do what keystrokes can do without actually using keystrokes
Teemu Piippo <crimsondusk64@gmail.com>
parents:
89
diff
changeset
|
62 | void handle_command(const String& input); |
111
51c93a0cc317
Now disconnects properly without instantly quitting
Teemu Piippo <crimsondusk64@gmail.com>
parents:
109
diff
changeset
|
63 | void disconnected(); |
115
bb7ef7c33dad
ZFC's own messages are now printed in blue to distinguish them from messages from the server.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
111
diff
changeset
|
64 | |
83
08bfc3d9d2ae
Removed format.cpp and format.h, use built-in formatting instead
Teemu Piippo <crimsondusk64@gmail.com>
parents:
73
diff
changeset
|
65 | void vprint (const char* fmtstr, va_list args); |
08bfc3d9d2ae
Removed format.cpp and format.h, use built-in formatting instead
Teemu Piippo <crimsondusk64@gmail.com>
parents:
73
diff
changeset
|
66 | void __cdecl print (const char* fmtstr, ...); |
08bfc3d9d2ae
Removed format.cpp and format.h, use built-in formatting instead
Teemu Piippo <crimsondusk64@gmail.com>
parents:
73
diff
changeset
|
67 | void __cdecl print_warning (const char* fmtstr, ...); |
08bfc3d9d2ae
Removed format.cpp and format.h, use built-in formatting instead
Teemu Piippo <crimsondusk64@gmail.com>
parents:
73
diff
changeset
|
68 | void __cdecl print_error (const char* fmtstr, ...); |
115
bb7ef7c33dad
ZFC's own messages are now printed in blue to distinguish them from messages from the server.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
111
diff
changeset
|
69 | void __cdecl print_text (const char* fmtstr, ...); |
72 | 70 | |
71 | private: | |
127
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
72 | StringList m_inputHistory; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
73 | int m_inputCursor; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
74 | int m_cursorPosition; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
75 | int m_inputPanning; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
76 | bool m_needRefresh; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
77 | bool m_needStatusBarRender; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
78 | bool m_needInputRender; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
79 | bool m_needOutputRender; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
80 | bool m_needNicklistRender; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
81 | struct { char ch; int x; } m_cursorCharacter; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
82 | Vector<ColoredLine> m_outputLines; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
83 | int m_outputScroll; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
84 | String m_title; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
85 | InputState m_inputState; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
86 | std::function<void(bool)> m_disconnectCallback; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
87 | IPAddress m_remoteAddress; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
88 | String m_statusBarText; |
132
8a4690db252e
Added support for colored nicknames
Teemu Piippo <crimsondusk64@gmail.com>
parents:
127
diff
changeset
|
89 | List<ColoredLine> m_playerNames; |
127
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
90 | String m_pasteBuffer; |
6610b8b29848
Restyled the names of Interface's private members
Teemu Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
91 | RCONSession m_session; |
72 | 92 | |
93 | void render_titlebar(); | |
111
51c93a0cc317
Now disconnects properly without instantly quitting
Teemu Piippo <crimsondusk64@gmail.com>
parents:
109
diff
changeset
|
94 | void safe_disconnect (std::function<void(bool)> afterwards); |
72 | 95 | int render_colorline (int y, int x0, int width, const ColoredLine& line, bool allowWrap); |
96 | int nicklist_width(); | |
97 | void render_output(); | |
98 | void render_nicklist(); | |
99 | void render_input(); | |
100 | void render_statusbar(); | |
101 | void position_cursor(); | |
89
777b2a10b835
Add support for standard pdcurses, thanks to Leonard for pointing out the solutions to a few mysteries.
Teemu Piippo <tsapii@utu.fi>
parents:
88
diff
changeset
|
102 | chtype color_pair (Color fg, Color bg); |
72 | 103 | const String& current_input(); |
104 | void detach_input(); | |
105 | String& mutable_current_input(); | |
106 | void move_input_cursor (int delta); | |
107 | String prompt_string(); | |
108 | void set_input_state (InputState newstate); | |
88
08ccaf26cffd
Now works with MSVC 2010/pdcurses-win32a
Teemu Piippo <tsapii@utu.fi>
parents:
83
diff
changeset
|
109 | void print_to_console (String message); |
72 | 110 | void yank (int a, int b); |
111 | int find_previous_word(); | |
112 | int find_next_word(); | |
111
51c93a0cc317
Now disconnects properly without instantly quitting
Teemu Piippo <crimsondusk64@gmail.com>
parents:
109
diff
changeset
|
113 | void reset_title(); |
116
552909484712
Fixed: sending a message from earlier history did not flush to a new input line, instead just up a single level in history
Teemu Piippo <crimsondusk64@gmail.com>
parents:
115
diff
changeset
|
114 | void flush_input(); |
14
33b8f428bacb
- begin work on interface - input line works for the most part :)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
115 | }; |
88
08ccaf26cffd
Now works with MSVC 2010/pdcurses-win32a
Teemu Piippo <tsapii@utu.fi>
parents:
83
diff
changeset
|
116 | |
08ccaf26cffd
Now works with MSVC 2010/pdcurses-win32a
Teemu Piippo <tsapii@utu.fi>
parents:
83
diff
changeset
|
117 | END_ZFC_NAMESPACE |