Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 137e6b1e52c3f82d687812190f9be614f4665402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/*
   client/chat.cc
   This file is part of the Osirion project and is distributed under 
   the terms and conditions of the GNU General Public License version 2 
*/

#include "auxiliary/functions.h"
#include "client/chat.h"
#include "client/client.h"
#include "core/core.h"
#include "sys/sys.h"
#include "ui/ui.h"

namespace client {

const size_t DEFAULT_CHAT_LOG_SIZE = 2048;
const size_t DEFAULT_CHAT_HISTO_SIZE = 512;

Chat::Chat(ui::Widget *parent) : ui::Window(parent)
{
	set_label("chat");
	history.clear();
	history.push_back("");
	history_pos = history.rbegin();

	chat_scrollpane = new ui::ScrollPane(this, chat_log);
	chat_scrollpane->set_border(false);

	chat_input = new ui::InputBox(this);
	chat_input->set_border(false);
	chat_input->set_prompt("^BSay^F:^B ");

	chat_input->set_focus();

	set_background(true);
	set_visible(false);

	chat_small = false;
}

Chat::~Chat()
{
	history.clear();
}

void Chat::clear()
{
	chat_log.clear();
	chat_input->clear();
}


void Chat::set_small_view(bool small_chat_view)
{
	chat_small = small_chat_view;
}

void Chat::event_text(const std::string & text)
{
	while (chat_log.size() >= DEFAULT_CHAT_LOG_SIZE) {
		chat_log.pop_front();
	}
	chat_log.push_back(text);
}

void Chat::show()
{
	Window::show();

	history_pos = history.rbegin();
	(*history_pos).clear();
	chat_input->set_text((*history_pos));	

	chat_scrollpane->set_scroll(0);
}

void Chat::toggle()
{
	if (visible())
		hide();
	else
		show();
}

bool Chat::on_keypress(const int key, const unsigned int modifier)
{
	// number of lines to scroll
	const size_t scroll_offset = 3;

	History::reverse_iterator upit;

	switch( key ) {
	case SDLK_ESCAPE:
		if (visible()) {
			hide();
			return true;
		} else {
			return false;
		}
	case SDLK_RETURN:		
		if (chat_input->text().size()) {
			// store input into history
			while (history.size() >= DEFAULT_CHAT_HISTO_SIZE) {
				history.pop_front();
			}

			if (chat_input->text().c_str()[0] == '/' || chat_input->text().c_str()[0] == '\\') {
				core::cmd() <<  &chat_input->text().c_str()[1] << std::endl;
			} else {
				core::cmd() << "say " << chat_input->text() << std::endl;
			}
			(*history.rbegin()) = chat_input->text();

			history.push_back("");
			history_pos = history.rbegin();
			chat_input->set_text((*history_pos));

			if (chat_small)
				hide();
		} else {
			hide();
		}
		return true;
		break;

	case SDLK_UP:
		upit = history_pos;
		++upit;
		if (upit != history.rend()) {
			history_pos = upit;
			chat_input->set_text((*history_pos));
		}
		return true;
		break;

	case SDLK_DOWN:
		if (history_pos != history.rbegin()) {
			--history_pos;
			chat_input->set_text((*history_pos));
		}
		return true;
		break;

	case SDLK_PAGEUP:
		chat_scrollpane->inc_scroll(scroll_offset);
		return true;
		break;

	case SDLK_PAGEDOWN:
		chat_scrollpane->dec_scroll(scroll_offset);
		return true;
		break;
	}

	return false;
}

void Chat::event_draw()
{
	if (ui::console()->visible())
		return;

	if (!core::application()->connected()) {
		hide();
		return;
	}

	if (ui::root()->active()) {
		hide();
		return;
	}
	
	if (chat_small) {
		chat_scrollpane->hide();
	} else {
		chat_scrollpane->show();
	}
	Widget::event_draw();
}

void Chat::resize()
{
	const float margin = 8.0f;
	math::Vector2f s(size());

	s[0] -= margin*2;
	s[1] -= margin*2;

	chat_scrollpane->set_location(margin, margin);
	chat_scrollpane->set_size(s.width(), s.height() - font()->height() *1.5f);
	
	chat_input->set_location(margin, height() - font()->height() - margin);
	chat_input->set_size(s.width(), font()->height());
}


} // namespace client