-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappcontroller.cpp
405 lines (389 loc) · 14 KB
/
appcontroller.cpp
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/*------------------------------------------------------------------------------------------------------------------
-- Class: AppController
--
-- BaseClass: QObject
--
-- DATE: March 20th, 2016
--
-- REVISIONS: March 20th, 2016: Created the initial class
-- March 23rd, 2016: Integrated class with networking code
-- March 23rd, 2016: Commented
--
-- DESIGNER: Micah Willems
--
-- PROGRAMMER: Micah Willems
--
-- METHODS: AppController(QQmlApplicationEngine *engine)
-- Q_INVOKABLE QVariant getCursorPos()
-- void connectButtonClicked(const QString &usrname, int picNum, const QString &IP);
-- void sendButtonClicked(const QString &message);
-- void gotNewMessage(const QString &username, const QString &ip, const QString &icon, const QString &message);
-- void gotNewUser(const QString &username, const QString &ip, const QString &icon);
-- void gotLostUser(const QString &ip);
-- void setText(QString text);
-- QString getText() const;
-- void updateUsers();
--
-- NOTES:
-- AppController is what holds all of the functionality and logic of the GUI. It is the communications layer between
-- the business logic of the code and the visual UI side of the code.
----------------------------------------------------------------------------------------------------------------------*/
#include <QDebug>
#include <QString>
#include <QObject>
#include <QQmlComponent>
#include <QQmlProperty>
#include <QQuickItem>
#include <sstream>
#include "appcontroller.h"
//Implementation of a extern used to hold the pointer to our window
void * app;
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: getCursorPos
--
-- DATE: March 20th, 2016
--
-- REVISIONS: March 20th, 2016: Created the functionality
-- March 23rd, 2016: Commented
--
-- DESIGNER: Micah Willems
--
-- PROGRAMMER: Micah Willems
--
-- INTERFACE: QVariant AppController::getCursorPos()
--
-- RETURN: QVariant which holds the pointer to the current mouse position
--
-- NOTES:
-- Gets the current x and y position of the mouse while over the window. Returns it as a QVariant.
----------------------------------------------------------------------------------------------------------------------*/
QVariant AppController::getCursorPos()
{
return QVariant(QCursor::pos());
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: connectButtonClicked
--
-- DATE: March 20th, 2016
--
-- REVISIONS: March 20th, 2016: [Micah] Created the method and hooked it up to the button
-- March 23rd, 2016: [Carson] Integrated with the client networking code
--
-- DESIGNER: Micah Willems
--
-- PROGRAMMER: Micah Willems / Carson Roscoe
--
-- INTERFACE: void AppController::connectButtonClicked(nickname of the client
-- icon index number
-- IP address)
--
-- RETURN: void
--
-- NOTES:
-- Called when the connect button is clicked. Grabs the data from the form fields and passes it over to the function
-- used to connect to the server.
----------------------------------------------------------------------------------------------------------------------*/
void AppController::connectButtonClicked(const QString &usrname, int picNum, const QString &IP) {
if (usrname == "" || picNum < 0 || IP == "")
return;
app = (void*)this;
connectToServer(IP.toLatin1().data(),
(clientCodeCallback)newMessage,
(clientCodeCallback)recvNewUser,
(clientCodeCallback)recvUserLeft,
usrname.toLatin1().data(),
picNum);
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: sendButtonClicked
--
-- DATE: March 20th, 2016
--
-- REVISIONS: March 20th, 2016: [Micah] Created the method and hooked it up to the button
-- March 23rd, 2016: [Carson] Integrated with the client networking code
--
-- DESIGNER: Micah Willems
--
-- PROGRAMMER: Micah Willems / Carson Roscoe
--
-- INTERFACE: void AppController::sendButtonClicked(message to send)
--
-- RETURN: void
--
-- NOTES:
-- When the send button is clicked, send the message over to the networking code to send and pass our data to our
-- receive function to emulate receiving our packet (and therefor update the UI of our data)
----------------------------------------------------------------------------------------------------------------------*/
void AppController::sendButtonClicked(const QString &message) {
if (message == "")
return;
sendMessage(message.toLatin1().data());
std::ostringstream convert;
convert << icon;
QString Result = QString::fromStdString(convert.str());
gotNewMessage("Myself", username, Result, message);
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: gotNewMessage
--
-- DATE: March 20th, 2016
--
-- REVISIONS: March 20th, 2016: Created the method
-- March 23rd, 2016: Commented
--
-- DESIGNER: Carson Roscoe
--
-- PROGRAMMER: Carson Roscoe
--
-- INTERFACE: void AppController::gotNewMessage(IP message was received from
-- nickname of the sender
-- icon the sender was using as an index
-- message sent)
--
-- RETURN: void
--
-- NOTES:
-- After our read thread received a valid packet it deemed a packet of type message, it invoked this method call
-- on the main thread so the UI can be updated. This will update the UI with the new message.
----------------------------------------------------------------------------------------------------------------------*/
void AppController::gotNewMessage(const QString &ip, const QString &nickname, const QString &icon, const QString &message) {
QString text = "[" + nickname + "] " + message + "<br>";
qDebug() << "[MESSAGE] IP: " << ip << ", Nickname: " << nickname << ", Icon: " << icon << ", Message: " << message;
if (toFile) {
std::time_t result = std::time(nullptr);
std::string time = std::asctime(std::localtime(&result));
time.pop_back();
outfile << "[" << nickname.toStdString().c_str() << "/" << ip.toStdString().c_str() << " @ " << time << "] " << message.toStdString().c_str() << "\n";
}
//Someone said a new message.
Message msg(ip, nickname, icon, message);
addMessage(msg);
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: gotNewUser
--
-- DATE: March 20th, 2016
--
-- REVISIONS: March 20th, 2016: Created the method
-- March 23rd, 2016: Commented
--
-- DESIGNER: Carson Roscoe
--
-- PROGRAMMER: Carson Roscoe
--
-- INTERFACE: void AppController::gotNewUser(IP of the new user connected
-- nickname of the new user
-- icon the user was using as an index)
--
-- RETURN: void
--
-- NOTES:
-- After our read thread received a valid packet it deemed a packet of type new user, it invoked this method call
-- on the main thread so the UI can be updated. This will add the new user to our list and update the UI accordingly
----------------------------------------------------------------------------------------------------------------------*/
void AppController::gotNewUser(const QString &ip, const QString &nickname, const QString &icon) {
qDebug() << "[NEWUSER] Nickname: " << nickname << ", Icon: " << icon << ", IP: " << ip;
users[ip] = nickname;
updateUsers(".");
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: gotLostUser
--
-- DATE: March 20th, 2016
--
-- REVISIONS: March 20th, 2016: Created the method
-- March 23rd, 2016: Commented
--
-- DESIGNER: Carson Roscoe
--
-- PROGRAMMER: Carson Roscoe
--
-- INTERFACE: void AppController::gotLostUser(IP of the new user disconnected)
--
-- RETURN: void
--
-- NOTES:
-- After our read thread received a valid packet it deemed a packet of type user disconnected, it invoked this method call
-- on the main thread so the UI can be updated. This will remove the user from our list and update the UI accordingly
----------------------------------------------------------------------------------------------------------------------*/
void AppController::gotLostUser(const QString &ip) {
qDebug() << "[USERLEFT] IP: " << ip;
users.erase(ip);
updateUsers(".");
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: updateUsers
--
-- DATE: March 20th, 2016
--
-- REVISIONS: March 20th, 2016: [Carson] Created the functionality but printed updated list to console
-- March 23rd, 2016: [Micah] Hooked up the updated list to UI
-- March 23rd, 2016: [Carson]Commented
--
-- DESIGNER: Carson Roscoe
--
-- PROGRAMMER: Carson Roscoe / Micah Willems
--
-- INTERFACE: void AppController::updateUsers(QString s)
--
-- RETURN: void
--
-- NOTES:
-- Updates the UI of users after a user has been added or removed from our list of connected clients
----------------------------------------------------------------------------------------------------------------------*/
void AppController::updateUsers(QString s) {
qDebug() << "Updating userlist";
usersOnline = "";
std::map<QString,QString>::iterator it;
for (it=users.begin(); it!=users.end(); ++it)
usersOnline += "[" + it->first + "] <b>" + it->second + "</b><br>";
usersOnlineChanged(usersOnline);
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: getUsers
--
-- DATE: March 20th, 2016
--
-- REVISIONS:
--
-- DESIGNER: Micah Willems
--
-- PROGRAMMER: Micah Willems
--
-- INTERFACE: QString AppController::getUsers()
--
-- RETURN: QString
--
-- NOTES:
-- This function is used by the UI thread to fetch the value of usersOnline
----------------------------------------------------------------------------------------------------------------------*/
QString AppController::getUsers() {
return usersOnline;
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: addMessage
--
-- DATE: March 20th, 2016
--
-- REVISIONS:
--
-- DESIGNER: Micah Willems
--
-- PROGRAMMER: Micah Willems
--
-- INTERFACE: void AppController::addMessage(const Message &msg)
--
-- RETURN: void
--
-- NOTES:
-- This function is an implementation of the QAbstractListModel class for adding content to the model contents
----------------------------------------------------------------------------------------------------------------------*/
void AppController::addMessage(const Message &msg)
{
beginInsertRows(QModelIndex(), rowCount(), rowCount());
model << msg;
endInsertRows();
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: rowCount
--
-- DATE: March 20th, 2016
--
-- REVISIONS:
--
-- DESIGNER: Micah Willems
--
-- PROGRAMMER: Micah Willems
--
-- INTERFACE: int AppController::rowCount(const QModelIndex & parent) const
--
-- RETURN: int
--
-- NOTES:
-- This function is an implementation of the QAbstractListModel class, used by the UI when accessing the model
----------------------------------------------------------------------------------------------------------------------*/
int AppController::rowCount(const QModelIndex & parent) const {
Q_UNUSED(parent);
return model.count();
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: data
--
-- DATE: March 20th, 2016
--
-- REVISIONS:
--
-- DESIGNER: Micah Willems
--
-- PROGRAMMER: Micah Willems
--
-- INTERFACE: QVariant AppController::data(const QModelIndex & index, int role) const
--
-- RETURN: QVariant
--
-- NOTES:
-- This function is an implementation of the QAbstractListModel class, used by the UI when it pulls data from the model
-- to display in the view
----------------------------------------------------------------------------------------------------------------------*/
QVariant AppController::data(const QModelIndex & index, int role) const {
if (index.row() < 0 || index.row() >= model.count())
return QVariant();
const Message &msg = model[index.row()];
if (role == IpRole) {
return msg.ip();
} else if (role == UsrRole) {
return msg.usr();
} else if (role == AvRole) {
return msg.av();
} else if (role == TextRole) {
return msg.tex();
}
return QVariant();
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: roleNames
--
-- DATE: March 20th, 2016
--
-- REVISIONS:
--
-- DESIGNER: Micah Willems
--
-- PROGRAMMER: Micah Willems
--
-- INTERFACE: QHash<int, QByteArray> AppController::roleNames() const
--
-- RETURN: void
--
-- NOTES:
-- This function connects keywords in the view's content with values that can be accessed in the code here (Model)
----------------------------------------------------------------------------------------------------------------------*/
QHash<int, QByteArray> AppController::roleNames() const {
QHash<int, QByteArray> roles;
roles[IpRole] = "ipAddress";
roles[UsrRole] = "userName";
roles[AvRole] = "imageSrc";
roles[TextRole] = "textContents";
return roles;
}
/*------------------------------------------------------------------------------------------------------------------
-- METHOD: disconnect
--
-- DATE: March 20th, 2016
--
-- REVISIONS:
--
-- DESIGNER: Carson Roscoe
--
-- PROGRAMMER: Carson Roscoe
--
-- INTERFACE: void AppController::disconnect()
--
-- RETURN: void
--
-- NOTES:
-- This function disconnects the client
----------------------------------------------------------------------------------------------------------------------*/
void AppController::disconnect() {
closeConnection();
}