Last change
on this file since 0cc431d was 6475138, checked in by dportnoy <dmp1488@…>, 12 years ago |
Added a chat class to encapsulate the server messages and text input
|
-
Property mode
set to
100644
|
File size:
426 bytes
|
Rev | Line | |
---|
[6475138] | 1 | #pragma once
|
---|
| 2 |
|
---|
| 3 | #include <string>
|
---|
| 4 | #include <vector>
|
---|
| 5 |
|
---|
| 6 | #include <allegro5/allegro.h>
|
---|
| 7 | #include <allegro5/allegro_font.h>
|
---|
| 8 |
|
---|
| 9 | using namespace std;
|
---|
| 10 |
|
---|
| 11 | class chat
|
---|
| 12 | {
|
---|
| 13 | private:
|
---|
| 14 | vector<string> vctChat;
|
---|
| 15 | string strPrompt;
|
---|
| 16 | string strEnteredInput;
|
---|
| 17 | public:
|
---|
| 18 | chat(void);
|
---|
| 19 | ~chat(void);
|
---|
| 20 |
|
---|
| 21 | string getInput();
|
---|
| 22 |
|
---|
| 23 | void draw(ALLEGRO_FONT *font, ALLEGRO_COLOR color);
|
---|
| 24 | void addLine(string s);
|
---|
| 25 |
|
---|
| 26 | bool processEvent(ALLEGRO_EVENT ev);
|
---|
| 27 | };
|
---|
| 28 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.