Compare commits

..

15 Commits

Author SHA1 Message Date
MarcEricMartel
5b0be2d985 Gossage de musique 2023-12-09 16:51:43 -05:00
MarcEricMartel
c176fddea1 Update engine.cpp 2023-12-09 16:25:24 -05:00
MarcEricMartel
46298f8256 Oh yeah. 2023-12-09 15:54:06 -05:00
MarcEricMartel
461a8aa11b Merge remote-tracking branch 'origin/InputFields' into SQC_mergeFieldsAndOnline 2023-12-09 15:23:44 -05:00
MarcEricMartel
9aaad6426c 🚫 👂 🐆 2023-12-09 12:02:04 -05:00
mduval76
09979f1e72 Push connexion multiplayer. 2023-12-09 00:00:52 -05:00
mduval76
c88143c2bc Push inputs username et server address fonctionnels. 2023-12-08 23:42:01 -05:00
mduval76
ff10207257 Push backspace fonctionnel 2023-12-08 23:06:33 -05:00
mduval76
06cd890506 Push input rejette touches non valides. 2023-12-08 22:34:17 -05:00
mduval76
850f5a59d8 Push string accumule comme il faut 2023-12-08 22:15:10 -05:00
mduval76
9562dc00b8 Push SimulateKeyboard différencie MAJ et MIN 2023-12-08 21:45:19 -05:00
mduval76
d6b1870b5b Push fake keyboard - Simulatekeyboard 2023-12-08 19:55:59 -05:00
mduval76
721fef57e2 Push lobby labels. 2023-12-07 16:31:43 -05:00
mduval76
c66e49ab0c Push de quoi 2023-12-07 13:55:44 -05:00
mduval76
63d8a62429 Push tin toé 2023-12-06 13:14:51 -05:00
16 changed files with 556 additions and 168 deletions

View File

@ -38,11 +38,10 @@ bool Bullet::Update(World* world, float elapsedtime, int perframe, std::unordere
else if (world->BlockAt(m_currentpos) != BTYPE_AIR) { else if (world->BlockAt(m_currentpos) != BTYPE_AIR) {
if (chunkmod) { if (chunkmod) {
using namespace netprot; using namespace netprot;
ChunkMod* cmod = *chunkmod; *chunkmod = new ChunkMod();
cmod = new ChunkMod(); (*chunkmod)->old_b_type = world->BlockAt(m_currentpos);
cmod->old_b_type = world->BlockAt(m_currentpos); (*chunkmod)->b_type = BTYPE_AIR;
cmod->b_type = BTYPE_AIR; (*chunkmod)->pos = m_currentpos;
cmod->pos = m_currentpos;
} }
world->ChangeBlockAtPosition(BTYPE_AIR, m_currentpos); world->ChangeBlockAtPosition(BTYPE_AIR, m_currentpos);

View File

@ -198,7 +198,7 @@ void netprot::Serialize(Sync* sync, char* buf[], uint32_t* buflen) {
(uint8_t)((vec[2] >> 8) & 0xFF), (uint8_t)((vec[2] >> 8) & 0xFF),
(uint8_t)(vec[2] & 0xFF) }; (uint8_t)(vec[2] & 0xFF) };
memcpy(*buf + sizeof(uint64_t) * 2 + sizeof(uint32_t) + sizeof(uint16_t) + 2, vec8, sizeof(uint32_t) * 3); memcpy(*buf + sizeof(uint64_t) * 2 + sizeof(uint32_t) + sizeof(uint16_t) + 1, vec8, sizeof(uint32_t) * 3);
uint32_t hp; uint32_t hp;
@ -210,6 +210,8 @@ void netprot::Serialize(Sync* sync, char* buf[], uint32_t* buflen) {
(uint8_t)((hp >> 8) & 0xFF), (uint8_t)((hp >> 8) & 0xFF),
(uint8_t)(hp & 0xFF) }; (uint8_t)(hp & 0xFF) };
memcpy(*buf + sizeof(uint64_t) * 2 + sizeof(uint32_t) * 4 + sizeof(uint16_t) + 1, hp8, sizeof(float));
*buflen = sizeof(uint64_t) * 2 + sizeof(uint32_t) * 4 + sizeof(uint16_t) + sizeof(float) + 1; *buflen = sizeof(uint64_t) * 2 + sizeof(uint32_t) * 4 + sizeof(uint16_t) + sizeof(float) + 1;
} }
@ -218,7 +220,8 @@ void netprot::Serialize(TeamInfo* tinfo, char* buf[], uint32_t* buflen) {
size_t namesize = std::strlen(tinfo->name) + 1; size_t namesize = std::strlen(tinfo->name) + 1;
memcpy(*buf + 1, &tinfo->name, namesize); strcpy(*buf + 1, namesize, tinfo->name);
uint64_t tid = tinfo->id; uint64_t tid = tinfo->id;
uint8_t tid8[sizeof(uint64_t)] = { uint8_t tid8[sizeof(uint64_t)] = {
(uint8_t)((tid >> 56) & 0xFF), (uint8_t)((tid >> 56) & 0xFF),
@ -241,7 +244,8 @@ void netprot::Serialize(LoginInfo* linfo, char* buf[], uint32_t* buflen) {
size_t namesize = std::strlen(linfo->name) + 1; size_t namesize = std::strlen(linfo->name) + 1;
memcpy(*buf + 1, &linfo->name, namesize); strcpy(*buf + 1, namesize, linfo->name);
uint64_t sid = linfo->sid; uint64_t sid = linfo->sid;
uint8_t sid8[sizeof(uint64_t)] = { uint8_t sid8[sizeof(uint64_t)] = {
(uint8_t)((sid >> 56) & 0xFF), (uint8_t)((sid >> 56) & 0xFF),
@ -278,7 +282,8 @@ void netprot::Serialize(PlayerInfo* pinfo, char* buf[], uint32_t* buflen) {
size_t namesize = std::strlen(pinfo->name) + 1; size_t namesize = std::strlen(pinfo->name) + 1;
memcpy(*buf + 1, &pinfo->name, namesize); strcpy(*buf + 1, namesize, pinfo->name);
uint64_t id = pinfo->id; uint64_t id = pinfo->id;
uint8_t id8[sizeof(uint64_t)] = { uint8_t id8[sizeof(uint64_t)] = {
(uint8_t)((id >> 56) & 0xFF), (uint8_t)((id >> 56) & 0xFF),
@ -703,7 +708,7 @@ bool netprot::Deserialize(Sync* sync, char* buf, uint32_t* buflen) {
uint8_t subvec[3 * sizeof(uint32_t)] = { 0,0,0,0,0,0,0,0,0,0,0,0 }; uint8_t subvec[3 * sizeof(uint32_t)] = { 0,0,0,0,0,0,0,0,0,0,0,0 };
memcpy(subvec, &buf[2 + sizeof(uint64_t) * 2 + sizeof(uint32_t) + sizeof(uint16_t)], sizeof(uint8_t) * 12); memcpy(subvec, &buf[1 + sizeof(uint64_t) * 2 + sizeof(uint32_t) + sizeof(uint16_t)], sizeof(uint8_t) * 12);
uint32_t vec[3] = { uint32_t vec[3] = {
(uint32_t)subvec[0] << 24 | (uint32_t)subvec[0] << 24 |
(uint32_t)subvec[1] << 16 | (uint32_t)subvec[1] << 16 |
@ -722,7 +727,7 @@ bool netprot::Deserialize(Sync* sync, char* buf, uint32_t* buflen) {
uint8_t hp8[4]; uint8_t hp8[4];
memcpy(&hp8, &buf[2 + sizeof(uint64_t) * 2 + sizeof(uint32_t) * 4 + sizeof(uint16_t)], sizeof(uint32_t)); memcpy(&hp8, &buf[1 + sizeof(uint64_t) * 2 + sizeof(uint32_t) * 4 + sizeof(uint16_t)], sizeof(uint32_t));
uint32_t hp = (uint32_t)hp8[0] << 24 | uint32_t hp = (uint32_t)hp8[0] << 24 |
(uint32_t)hp8[1] << 16 | (uint32_t)hp8[1] << 16 |
@ -731,7 +736,7 @@ bool netprot::Deserialize(Sync* sync, char* buf, uint32_t* buflen) {
memcpy(&sync->hp, &hp, sizeof(float)); memcpy(&sync->hp, &hp, sizeof(float));
*buflen = sizeof(uint64_t) * 2 + sizeof(uint32_t) * 4 + sizeof(uint16_t) + sizeof(float); *buflen = 1 + sizeof(uint64_t) * 2 + sizeof(uint32_t) * 4 + sizeof(uint16_t) + sizeof(float);
return true; return true;
} }
@ -745,7 +750,7 @@ bool netprot::Deserialize(TeamInfo* tinfo, char* buf, uint32_t* buflen) {
if (namesize > 32) if (namesize > 32)
return false; return false;
memcpy(&tinfo->name, &buf[1], namesize); strcpy(tinfo->name, namesize, &buf[1]);
uint8_t diff[sizeof(uint64_t)] = { 0,0,0,0,0,0,0,0 }; uint8_t diff[sizeof(uint64_t)] = { 0,0,0,0,0,0,0,0 };
memcpy(diff, &buf[namesize + 1], sizeof(uint64_t)); memcpy(diff, &buf[namesize + 1], sizeof(uint64_t));
@ -773,7 +778,7 @@ bool netprot::Deserialize(LoginInfo* linfo, char* buf, uint32_t* buflen) {
if (namesize > 32) if (namesize > 32)
return false; return false;
memcpy(&linfo->name, &buf[1], namesize); strcpy(linfo->name, namesize, &buf[1]);
uint8_t diff[sizeof(uint64_t)] = { 0,0,0,0,0,0,0,0 }; uint8_t diff[sizeof(uint64_t)] = { 0,0,0,0,0,0,0,0 };
memcpy(diff, &buf[namesize + 1], sizeof(uint64_t)); memcpy(diff, &buf[namesize + 1], sizeof(uint64_t));
@ -812,7 +817,7 @@ bool netprot::Deserialize(PlayerInfo* pinfo, char* buf, uint32_t* buflen) {
if (namesize > 32) if (namesize > 32)
return false; return false;
memcpy(&pinfo->name, &buf[1], namesize); strcpy(pinfo->name, namesize, &buf[1]);
uint8_t diff[sizeof(uint64_t)] = { 0,0,0,0,0,0,0,0 }; uint8_t diff[sizeof(uint64_t)] = { 0,0,0,0,0,0,0,0 };
memcpy(diff, &buf[namesize + 1], sizeof(uint64_t)); memcpy(diff, &buf[namesize + 1], sizeof(uint64_t));

View File

@ -19,7 +19,7 @@ namespace netprot {
/* Structures */ /* Structures */
struct Buffer { // Pour pouvoir rendre l'utilisation des buffers plus clean. struct Buffer { // Pour pouvoir rendre l'utilisation des buffers plus clean.
char* ptr = new char[BUFFER_LENGTH] { 1 }, * tmp = nullptr; char *ptr = new char[BUFFER_LENGTH] { 1 }, *tmp = nullptr;
uint32_t len = BUFFER_LENGTH; uint32_t len = BUFFER_LENGTH;
~Buffer() { delete[] ptr; } ~Buffer() { delete[] ptr; }
@ -27,7 +27,7 @@ namespace netprot {
}; };
struct Packet { // Pour pouvoir recevoir les paquets du recv() sans avoir à les aiguiller dans la même thread. struct Packet { // Pour pouvoir recevoir les paquets du recv() sans avoir à les aiguiller dans la même thread.
void* ptr = nullptr; // Notez que le pointeur doit être supprimé séparément lorsqu'il n'est plus utile. void *ptr = nullptr; // Notez que le pointeur doit être supprimé séparément lorsqu'il n'est plus utile.
PACKET_TYPE type = PACKET_TYPE::ERR; PACKET_TYPE type = PACKET_TYPE::ERR;
}; };
@ -87,30 +87,30 @@ namespace netprot {
}; };
struct TeamInfo { // cli <-> srv TCP once struct TeamInfo { // cli <-> srv TCP once
char name[32]; char *name = new char[32];
uint64_t id = 0; uint64_t id = 0;
TeamInfo() {} TeamInfo() {}
TeamInfo(TeamInfo* tem) : id(tem->id) { strcpy(tem->name, name); } TeamInfo(TeamInfo* tem) : id(tem->id) { strcpy(name, 32, tem->name); }
~TeamInfo() { delete[] name; }
}; };
struct LoginInfo { // cli <-> srv TCP once struct LoginInfo { // cli <-> srv TCP once
char name[32]; char *name = new char[32];
uint64_t sid = 0, uint64_t sid = 0,
tid = 0; tid = 0;
LoginInfo() {} LoginInfo() {}
LoginInfo(LoginInfo* ply): sid(ply->sid), tid(ply->tid) { strcpy(ply->name, name); } LoginInfo(LoginInfo* log): sid(log->sid), tid(log->tid) { strcpy(name, 32, log->name); }
~LoginInfo() { delete[] name; }
}; };
struct PlayerInfo { // cli <-> srv TCP once struct PlayerInfo { // cli <-> srv TCP once
char name[32]; char *name = new char[32];
uint64_t id = 0, uint64_t id = 0,
tid = 0; tid = 0;
PlayerInfo() {} PlayerInfo() {}
PlayerInfo(PlayerInfo* log) : id(log->id), tid(log->tid) { PlayerInfo(PlayerInfo* ply) : id(ply->id), tid(ply->tid) { strcpy(name, 32, ply->name); };
strcpy(log->name, name); PlayerInfo(int id, int tid, std::string strname) : id(id), tid(tid) { strcpy(name, 32, strname.c_str()); }
}; ~PlayerInfo() { delete[] name; }
PlayerInfo(int id, int tid, std::string strname) : id(id), tid(tid) { memcpy((void*)strname.c_str(), name, strname.length());
}
}; };
struct GameInfo { // cli <-> srv TCP event (before game start)/ once struct GameInfo { // cli <-> srv TCP event (before game start)/ once
@ -125,10 +125,9 @@ namespace netprot {
uint64_t src_id = 0, uint64_t src_id = 0,
dest_id = 0, dest_id = 0,
dest_team_id = 0; dest_team_id = 0;
char* mess = new char[140]; // Good 'nough for twitr, good 'nough for me. char *mess = new char[140]; // Good 'nough for twitr, good 'nough for me.
Chat() {} Chat() {}
Chat(Chat* cha) : src_id(cha->src_id), dest_id(cha->dest_id), dest_team_id(cha->dest_team_id) { Chat(Chat* cha) : src_id(cha->src_id), dest_id(cha->dest_id), dest_team_id(cha->dest_team_id) { strcpy(mess, 140, cha->mess); }
strcpy(mess, 140, cha->mess); }
~Chat() { delete[] mess; } ~Chat() { delete[] mess; }
}; };
@ -144,10 +143,11 @@ namespace netprot {
}; };
struct ErrorLog { // srv -> cli TCP event struct ErrorLog { // srv -> cli TCP event
char mess[140]; char *mess = new char[140];
bool is_fatal; bool is_fatal = false;
ErrorLog() {}; ErrorLog() {};
ErrorLog(ErrorLog* err) : is_fatal(err->is_fatal) { strcpy(err->mess, mess); } ErrorLog(ErrorLog* err) : is_fatal(err->is_fatal) { strcpy(mess, 140, err->mess); }
~ErrorLog() { delete[] mess; }
}; };
/* Fonctions */ /* Fonctions */

View File

@ -4,16 +4,18 @@
Connection::Connection(SOCKET sock, Connection::Connection(SOCKET sock,
sockaddr_in sockaddr, sockaddr_in sockaddr,
LoginInfo log, LoginInfo *log,
PlayerInfo play) : PlayerInfo *play) :
m_sock(sock), m_sock(sock),
m_addr(sockaddr), m_addr(sockaddr),
m_loginfo(log), m_loginfo(*log),
m_playinfo(play) { m_playinfo(*play) {
} }
Connection::~Connection() { closesocket(m_sock); } Connection::~Connection() {
delete player;
closesocket(m_sock); }
uint64_t Connection::GetHash(bool self) const { return self ? m_loginfo.sid : m_playinfo.id; } uint64_t Connection::GetHash(bool self) const { return self ? m_loginfo.sid : m_playinfo.id; }
@ -144,7 +146,7 @@ Timestamp Connection::Run(World* world) {
player->Killer = GetHash(true); player->Killer = GetHash(true);
} }
out.states.jumping = player->GetIsAirborne(); //abs(player->GetVelocity().y) > .2f; out.states.jumping = player->GetIsAirborne();
out.states.running = player->GetVelocity().Length() > .5f; out.states.running = player->GetVelocity().Length() > .5f;
out.states.still = !out.states.running && !out.states.jumping; out.states.still = !out.states.running && !out.states.jumping;
out.states.hit = player->m_hit; out.states.hit = player->m_hit;
@ -166,7 +168,7 @@ Timestamp Connection::Run(World* world) {
player->GetDirection(), player->GetDirection(),
block, true); block, true);
if (cmod) if (cmod)
ChunkDiffs.emplace_back(cmod); ChunkDiffs.push_back(std::move(cmod));
} }
} }
else toggle = false; else toggle = false;
@ -178,7 +180,7 @@ Timestamp Connection::Run(World* world) {
else out.states.jumpshot = false; else out.states.jumpshot = false;
if (in.keys.shoot && m_shoot_acc <= 0.) { if (in.keys.shoot && m_shoot_acc <= 0.) {
Bullets.emplace_back(new Bullet(player->GetPOV() + player->GetDirection(), player->GetDirection(), GetHash(true))); Bullets.push_back(std::move(new Bullet(player->GetPOV() + player->GetDirection(), player->GetDirection(), GetHash(true))));
m_shoot_acc = BULLET_TIME; m_shoot_acc = BULLET_TIME;
} }

View File

@ -16,8 +16,8 @@ public:
Connection( Connection(
SOCKET sock, SOCKET sock,
sockaddr_in sockaddr, sockaddr_in sockaddr,
LoginInfo log, LoginInfo *log,
PlayerInfo play); PlayerInfo *play);
~Connection(); ~Connection();
Player* player = nullptr; Player* player = nullptr;

View File

@ -3,6 +3,11 @@
int main() { int main() {
std::unique_ptr<Server> server = std::make_unique<Server>(); std::unique_ptr<Server> server = std::make_unique<Server>();
if (server->Init() == 0) if (server->Init() == 0)
if (server->Ready() == 0) while (server->Ready() == 0) {
server->Run(); server->Run();
if (!server->NewGameRequested())
break;
server->Cleanup();
}
server->DeInit();
} }

View File

@ -132,7 +132,7 @@ int Server::Ready() {
str.append(inet_ntop(AF_INET, &sockad.sin_addr, m_buf.ptr, m_buf.len)).append(": ").append(std::to_string(sockad.sin_port)); str.append(inet_ntop(AF_INET, &sockad.sin_addr, m_buf.ptr, m_buf.len)).append(": ").append(std::to_string(sockad.sin_port));
if (recv(sock, m_buf.ptr, m_buf.len, 0) > 0) { if (recv(sock, m_buf.ptr, m_buf.len, 0) > 0) {
PlayerInfo play; PlayerInfo* play = new PlayerInfo();
m_buf.len = BUFFER_LENGTH; m_buf.len = BUFFER_LENGTH;
Packet pck = getPack(&m_buf); Packet pck = getPack(&m_buf);
@ -153,22 +153,20 @@ int Server::Ready() {
sendPackTo<LoginInfo>(m_sock_udp, log, &m_buf, &sockad); sendPackTo<LoginInfo>(m_sock_udp, log, &m_buf, &sockad);
play.id = getUniqueId(); play->id = getUniqueId();
play.tid = log->tid; play->tid = log->tid;
strcpy(play.name, log->name); strcpy(play->name, 32, log->name);
Log(str.append(play.name).append(" SID: [").append(std::to_string(log->sid)).append("]") Log(str.append(play->name).append(" SID: [").append(std::to_string(log->sid)).append("]")
.append(" ID: [").append(std::to_string(play.id)).append("]") .append(" ID: [").append(std::to_string(play->id)).append("]")
.append(" TID: [").append(std::to_string(play.tid)).append("]"), false, false); .append(" TID: [").append(std::to_string(play->tid)).append("]"), false, false);
play.tid = log->tid; play->tid = log->tid;
sendPackTo<GameInfo>(m_sock_udp, &m_game, &m_buf, &sockad); sendPackTo<GameInfo>(m_sock_udp, &m_game, &m_buf, &sockad);
Connection* conn = new Connection(sock, sockad, *log, play); Connection* conn = new Connection(sock, sockad, log, play);
m_conns[log->sid] = conn; m_conns[log->sid] = conn;
delete log;
if (++nbrconn >= nbrjoueurs) if (++nbrconn >= nbrjoueurs)
readystart = true; readystart = true;
} }
@ -204,8 +202,8 @@ void Server::Run() {
m_conns.erase(key); m_conns.erase(key);
continue; continue;
} }
int x = (rand() % (CHUNK_SIZE_X * WORLD_SIZE_X - 1) - (CHUNK_SIZE_X * WORLD_SIZE_X / 2)) / 4, int x = (rand() % (CHUNK_SIZE_X * WORLD_SIZE_X - 1) - (CHUNK_SIZE_X * WORLD_SIZE_X / 2)) / 8,
y = (rand() % (CHUNK_SIZE_Y * WORLD_SIZE_Y - 1) - (CHUNK_SIZE_Y * WORLD_SIZE_Y / 2)) / 4; y = (rand() % (CHUNK_SIZE_Y * WORLD_SIZE_Y - 1) - (CHUNK_SIZE_Y * WORLD_SIZE_Y / 2)) / 8;
conn->player = new Player(Vector3f(x + .5f, CHUNK_SIZE_Y + 1.8f, y + .5f)); conn->player = new Player(Vector3f(x + .5f, CHUNK_SIZE_Y + 1.8f, y + .5f));
conn->player->m_username = conn->GetName(); conn->player->m_username = conn->GetName();
m_players[key] = conn->player; m_players[key] = conn->player;
@ -304,7 +302,7 @@ void Server::Run() {
for (auto& bull : conn->Bullets) { for (auto& bull : conn->Bullets) {
bullets.emplace_back(bull); bullets.emplace_back(bull);
Log("POW!", false, false); //Log("POW!", false, false);
BulletAdd* nbul = new BulletAdd(); BulletAdd* nbul = new BulletAdd();
nbul->pos = bull->getPos(); nbul->pos = bull->getPos();
nbul->dir = bull->getVel(); nbul->dir = bull->getVel();
@ -377,9 +375,44 @@ void Server::Run() {
sendPackTo<Chat>(m_sock_udp, &end, &m_buf, conn->getAddr()); sendPackTo<Chat>(m_sock_udp, &end, &m_buf, conn->getAddr());
// TODO: Gérer les 2-3 secondes post-game avant le billboard pour pas avoir un whiplash à la fin de la game. // TODO: Gérer les 2-3 secondes post-game avant le billboard pour pas avoir un whiplash à la fin de la game.
system("pause");
char* ch = new char[2];
std::cout << "Nouvelle partie? [o/N] ";
std::cin.getline(ch, 2);
std::cout << std::endl;
m_exit = true;
if (ch[0] == 'o' || ch[0] == 'O')
m_exit = false;
delete[] ch;
} }
void Server::Cleanup() {
for (auto& [key, conn] : m_conns)
delete conn;
m_conns.clear();
m_players.clear();
delete m_world;
m_world = nullptr;
}
void Server::DeInit() {
if (m_logfile.is_open())
m_logfile.close();
if (m_sock_udp)
closesocket(m_sock_udp);
if (m_sock_tcp)
closesocket(m_sock_tcp);
#ifdef _WIN32
WSACleanup();
#endif
}
bool Server::NewGameRequested() const { return !m_exit; }
inline std::string Server::LogTimestamp() { inline std::string Server::LogTimestamp() {
time_t rawtime; time_t rawtime;
tm timeinfo; tm timeinfo;
@ -460,7 +493,7 @@ std::string Server::getDeathMessage(std::string username, std::string killer) co
mess.append(temp.substr(0, ind)); mess.append(temp.substr(0, ind));
mess.append(username); mess.append(username);
if (!bypass) { if (!bypass) {
mess.append(temp.substr(ind + 1, indk)); mess.append(temp.substr(ind + 1, indk - 1));
mess.append(killer); mess.append(killer);
mess.append(temp.substr(indk + 1)); mess.append(temp.substr(indk + 1));
} }
@ -469,7 +502,7 @@ std::string Server::getDeathMessage(std::string username, std::string killer) co
else { else {
mess.append(temp.substr(0, indk)); mess.append(temp.substr(0, indk));
mess.append(killer); mess.append(killer);
mess.append(temp.substr(indk + 1, ind)); mess.append(temp.substr(indk + 1, ind - 1));
mess.append(username); mess.append(username);
mess.append(temp.substr(ind + 1)); mess.append(temp.substr(ind + 1));
} }

View File

@ -24,6 +24,9 @@ public:
int Init(); int Init();
int Ready(); int Ready();
void Run(); void Run();
void Cleanup();
void DeInit();
bool NewGameRequested() const;
private: private:
@ -44,7 +47,7 @@ private:
GameInfo m_game; GameInfo m_game;
World* m_world = nullptr; World* m_world = nullptr;
const bool m_manual_setup = SRV_MANUAL_SETUP; bool m_exit = true;
std::string LogTimestamp(); std::string LogTimestamp();
void Log(std::string str, bool is_error, bool is_fatal); void Log(std::string str, bool is_error, bool is_fatal);

View File

@ -14,7 +14,7 @@ Audio::Audio(const char * music) {
m_engine->setRolloffFactor(2); m_engine->setRolloffFactor(2);
m_engine->setDefault3DSoundMinDistance(.1); m_engine->setDefault3DSoundMinDistance(.1);
m_engine->setDefault3DSoundMaxDistance(1000); m_engine->setDefault3DSoundMaxDistance(1000);
m_music = m_engine->play2D(music, false, true, true, irrklang::ESM_STREAMING); m_music = m_engine->play2D(music, true, true, true, irrklang::ESM_STREAMING);
} }
Audio::~Audio() { Audio::~Audio() {

View File

@ -65,7 +65,7 @@ int Connector::Connect(const char* srv_addr, std::string name) {
netprot::Buffer bf; netprot::Buffer bf;
netprot::LoginInfo log; netprot::LoginInfo log;
strcpy(log.name, name.c_str()); strcpy(log.name, 32, name.c_str());
netprot::sendPack(m_sock_tcp, &log, &bf); netprot::sendPack(m_sock_tcp, &log, &bf);

View File

@ -48,8 +48,9 @@
enum GameState { enum GameState {
MAIN_MENU, MAIN_MENU,
SPLASH, SPLASH,
LOBBY,
OPTIONS, OPTIONS,
QUIT, QUIT,
PLAY, PLAY,
PAUSE PAUSE
}; };

View File

@ -18,7 +18,7 @@ struct Notification {
// Use a vector to manage notifications // Use a vector to manage notifications
std::vector<Notification> notifications; std::vector<Notification> notifications;
Engine::Engine() : m_remotePlayer(&m_pinfo), m_pinfo() {} Engine::Engine() {}
Engine::~Engine() { Engine::~Engine() {
m_world.CleanUpWorld(m_renderCount, true); m_world.CleanUpWorld(m_renderCount, true);
@ -29,9 +29,6 @@ Engine::~Engine() {
} }
void Engine::Init() { void Engine::Init() {
uint64_t seed = SEED;
if (m_istarted) if (m_istarted)
return; return;
else m_istarted = true; else m_istarted = true;
@ -39,74 +36,16 @@ void Engine::Init() {
// Objet de skybox avec sa propre texture et son propre shader! // Objet de skybox avec sa propre texture et son propre shader!
m_skybox.Init(0.2f); m_skybox.Init(0.2f);
// Objet de musique! // Objet de musique!
//m_audio.ToggleMusicState(); //m_menuaudio.ToggleMusicState();
// Array pour les balles. // Array pour les balles.
for (int x = 0; x < MAX_BULLETS; ++x) { for (int x = 0; x < MAX_BULLETS; ++x) {
m_bullets[x] = nullptr; m_bullets[x] = nullptr;
m_whoosh[x] = nullptr; m_whoosh[x] = nullptr;
} }
// Init Chunks
m_world.GetChunks().Reset(nullptr); m_world.GetChunks().Reset(nullptr);
m_world.SetSeed(SEED);
char* ch = new char[2];
std::cout << "Jouer en ligne? [o/N] ";
std::cin.getline(ch, 2);
std::cout << std::endl;
if (*ch == 'o' || *ch == 'O') {
char* input = new char[32];
std::string playname, srvname;
while (playname.size() < 1) {
std::cout << "Veuillez entrer un nom de joueur: ";
std::cin.getline(input, 32);
std::cout << std::endl;
playname = input;
if (playname.size() < 1 || playname.size() > 32)
std::puts("Nom invalide.");
}
while (srvname.size() < 1) {
std::cout << "Veuillez entrer une adresse de serveur: ";
std::cin.getline(input, 32);
std::cout << std::endl;
srvname = input;
if (srvname.size() < 1 || srvname.size() > 32)
std::puts("Adresse serveur invalide.");
}
delete[] input;
if (!m_conn.Init()) {
if (!m_conn.Connect(srvname.c_str(), playname)) {
// setup jeu en reseau.
std::cout << "ID recu du serveur: " << std::to_string(m_conn.getId()) << "!" << std::endl;
//std::cout << "Seed recu du serveur: " << std::to_string(m_conn.getSeed()) << "!" << std::endl;
m_player = Player(m_conn.getOrigin().position);
for (auto& [key, player] : m_conn.m_players) {
m_players[key] = new RemotePlayer(player);
RemotePlayer* rt = (RemotePlayer*)m_players[key];
rt->SetPosition(Vector3f(555, 555, 555));
}
m_player.m_username = playname;
seed = 9370707;//m_conn.getSeed();
m_networkgame = true;
}
else std::cout << "Erreur de connexion." << std::endl;
}
else std::cout << "Erreur de creation de socket." << std::endl;
}
delete[] ch;
m_world.SetSeed(seed);
m_startTime = std::chrono::high_resolution_clock::now();
m_remotePlayer.SetPosition(Vector3f(.5, CHUNK_SIZE_Y + 10., .5));
// Gestion de souris.
CenterMouse();
HideCursor();
} }
void Engine::DeInit() {} void Engine::DeInit() {}
@ -143,8 +82,9 @@ void Engine::LoadResource() {
LoadTexture(m_textureGun, TEXTURE_PATH "gun01.png", false); LoadTexture(m_textureGun, TEXTURE_PATH "gun01.png", false);
LoadTexture(m_texturePovGun, TEXTURE_PATH "GUN.png", false); LoadTexture(m_texturePovGun, TEXTURE_PATH "GUN.png", false);
LoadTexture(m_textureLobbyMenu, TEXTURE_PATH "menus/backgrounds/bgLobby.png", false);
LoadTexture(m_textureMainMenu, TEXTURE_PATH "menus/backgrounds/bgMainMenu.png", false); LoadTexture(m_textureMainMenu, TEXTURE_PATH "menus/backgrounds/bgMainMenu.png", false);
LoadTexture(m_texturePauseMenu, TEXTURE_PATH "menus/backgrounds/bgPause.png", false); //LoadTexture(m_texturePauseMenu, TEXTURE_PATH "menus/backgrounds/bgPause.png", false);
LoadTexture(m_textureOptionsMenu, TEXTURE_PATH "menus/backgrounds/bgOptions.png", false); LoadTexture(m_textureOptionsMenu, TEXTURE_PATH "menus/backgrounds/bgOptions.png", false);
LoadTexture(m_textureSplashScreen, TEXTURE_PATH "menus/backgrounds/bgSplash.png", false); LoadTexture(m_textureSplashScreen, TEXTURE_PATH "menus/backgrounds/bgSplash.png", false);
@ -162,6 +102,9 @@ void Engine::LoadResource() {
LoadTexture(m_textureOptSensitivity, TEXTURE_PATH "menus/buttons/options/optSensitivity.png", false); LoadTexture(m_textureOptSensitivity, TEXTURE_PATH "menus/buttons/options/optSensitivity.png", false);
LoadTexture(m_textureOptSfx, TEXTURE_PATH "menus/buttons/options/optSfx.png", false); LoadTexture(m_textureOptSfx, TEXTURE_PATH "menus/buttons/options/optSfx.png", false);
LoadTexture(m_textureLobbyServer, TEXTURE_PATH "menus/labels/labelServer.png", false);
LoadTexture(m_textureLobbyIdentify, TEXTURE_PATH "menus/labels/labelIdentify.png", false);
LoadTexture(m_textureHd, TEXTURE_PATH "menus/labels/labelHd.png", false);
LoadTexture(m_textureHd, TEXTURE_PATH "menus/labels/labelHd.png", false); LoadTexture(m_textureHd, TEXTURE_PATH "menus/labels/labelHd.png", false);
LoadTexture(m_textureFhd, TEXTURE_PATH "menus/labels/labelFhd.png", false); LoadTexture(m_textureFhd, TEXTURE_PATH "menus/labels/labelFhd.png", false);
LoadTexture(m_textureQhd, TEXTURE_PATH "menus/labels/labelQhd.png", false); LoadTexture(m_textureQhd, TEXTURE_PATH "menus/labels/labelQhd.png", false);
@ -602,14 +545,10 @@ void Engine::DisplayPovGun() {
glLoadIdentity(); glLoadIdentity();
glTranslated(xTranslation, 0, 0); glTranslated(xTranslation, 0, 0);
glBegin(GL_QUADS); glBegin(GL_QUADS);
glTexCoord2f(0, 0); glTexCoord2f(0, 0); glVertex2i(0, 0);
glVertex2i(0, 0); glTexCoord2f(1, 0); glVertex2i(quadWidth, 0);
glTexCoord2f(1, 0); glTexCoord2f(1, 1); glVertex2i(quadWidth, quadHeight);
glVertex2i(quadWidth, 0); glTexCoord2f(0, 1); glVertex2i(0, quadHeight);
glTexCoord2f(1, 1);
glVertex2i(quadWidth, quadHeight);
glTexCoord2f(0, 1);
glVertex2i(0, quadHeight);
glEnd(); glEnd();
// Reset du blend function // Reset du blend function
@ -666,6 +605,34 @@ int Engine::GetOptionsChoice() {
return m_selectedOption; return m_selectedOption;
} }
bool Engine::StartMultiplayerGame() {
bool ok = true;
if (!m_conn.Init()) {
if (!m_conn.Connect(m_serverAddr.c_str(), m_username)) {
// setup jeu en reseau.
std::cout << "ID recu du serveur: " << std::to_string(m_conn.getId()) << "!" << std::endl;
std::cout << "Seed recu du serveur: " << std::to_string(m_conn.getSeed()) << "!" << std::endl;
m_player = Player(m_conn.getOrigin().position);
for (auto& [key, player] : m_conn.m_players)
m_players[key] = new RemotePlayer(player);
//m_world.SetSeed(m_conn.getSeed());
m_world.SetSeed(9370707);
m_networkgame = true;
}
else {
std::cout << "Erreur de connexion." << std::endl;
ok = false;
}
}
else {
std::cout << "Erreur de creation de socket." << std::endl;
ok = false;
}
return ok;
}
void Engine::DisplayInfo(float elapsedTime, BlockType bloc) { void Engine::DisplayInfo(float elapsedTime, BlockType bloc) {
m_textureFont.Bind(); m_textureFont.Bind();
std::ostringstream ss; std::ostringstream ss;
@ -751,15 +718,81 @@ void Engine::DisplaySplashScreen() {
glPopMatrix(); glPopMatrix();
} }
void Engine::DisplayPauseMenu() { void Engine::DisplayLobbyMenu(float elapsedTime) {
m_texturePauseMenu.Bind(); GLint viewport[4];
glGetIntegerv(GL_VIEWPORT, viewport);
glDisable(GL_DEPTH_TEST);
glEnable(GL_BLEND);
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glLoadIdentity();
glOrtho(0, Width(), 0, Height(), -1, 1);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
m_textureLobbyMenu.Bind();
glBegin(GL_QUADS); glBegin(GL_QUADS);
glTexCoord2f(0, 0); glVertex2i(0, 0); glTexCoord2f(0, 0); glVertex2i(0, 0);
glTexCoord2f(1, 0); glVertex2i(Width(), 0); glTexCoord2f(1, 0); glVertex2i(Width(), 0);
glTexCoord2f(1, 1); glVertex2i(Width(), Height()); glTexCoord2f(1, 1); glVertex2i(Width(), Height());
glTexCoord2f(0, 1); glVertex2i(0, Height()); glTexCoord2f(0, 1); glVertex2i(0, Height());
glEnd(); glEnd();
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
if (m_settingUsername) {
SetPlayerUsername(elapsedTime);
}
else if (m_settingServer) {
SetServerAddress(elapsedTime);
}
glViewport(viewport[0], viewport[1], viewport[2], viewport[3]);
glEnable(GL_DEPTH_TEST);
glMatrixMode(GL_PROJECTION);
glPopMatrix();
glMatrixMode(GL_MODELVIEW);
glPopMatrix();
}
void Engine::SetPlayerUsername(float elapsedTime) {
m_textureLobbyIdentify.Bind();
glBegin(GL_QUADS);
glTexCoord2f(0, 0); glVertex2i(Width() * 0.6, Height() * 0.75);
glTexCoord2f(1, 0); glVertex2i(Width() * 0.975, Height() * 0.75);
glTexCoord2f(1, 1); glVertex2i(Width() * 0.975, Height() * 0.95);
glTexCoord2f(0, 1); glVertex2i(Width() * 0.6, Height() * 0.95);
glEnd();
glBlendFunc(GL_SRC_ALPHA, GL_ONE);
HandlePlayerInput(elapsedTime);
glDisable(GL_BLEND);
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
}
void Engine::SetServerAddress(float elapsedTime) {
m_textureLobbyServer.Bind();
glBegin(GL_QUADS);
glTexCoord2f(0, 0); glVertex2i(Width() * 0.6, Height() * 0.75);
glTexCoord2f(1, 0); glVertex2i(Width() * 0.975, Height() * 0.75);
glTexCoord2f(1, 1); glVertex2i(Width() * 0.975, Height() * 0.95);
glTexCoord2f(0, 1); glVertex2i(Width() * 0.6, Height() * 0.95);
glEnd();
glBlendFunc(GL_SRC_ALPHA, GL_ONE);
HandlePlayerInput(elapsedTime);
glDisable(GL_BLEND);
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
} }
void Engine::DisplayMainMenu() { void Engine::DisplayMainMenu() {
@ -1197,14 +1230,27 @@ void Engine::Render(float elapsedTime) {
return; return;
} }
if (m_gamestate == GameState::PAUSE) { if (m_gamestate == GameState::LOBBY) {
DisplayPauseMenu(); DisplayLobbyMenu(elapsedTime);
if (m_multiReady) {
if (StartMultiplayerGame()) {
std::cout << "Starting multiplayer game reached" << std::endl;
m_gamestate = GameState::PLAY;
//m_menuaudio.ToggleMusicState();
m_audio.ToggleMusicState();
m_startTime = std::chrono::high_resolution_clock::now();
}
else {
std::cout << "Cannot reach server." << std::endl;
m_gamestate = GameState::MAIN_MENU;
}
}
return; return;
} }
if (m_gamestate == GameState::PLAY) { if (m_gamestate == GameState::PLAY) {
HideCursor(); HideCursor();
CenterMouse(); //D<>placement de centermouse dans l'action de jouer CenterMouse();
static irrklang::ISound* step; // Pour les sons de pas. static irrklang::ISound* step; // Pour les sons de pas.
static float pollTime = 0; static float pollTime = 0;
@ -1258,7 +1304,7 @@ void Engine::Render(float elapsedTime) {
m_mouseWU = m_mouseWD = m_key1 = m_key2 = false; m_mouseWU = m_mouseWD = m_key1 = m_key2 = false;
netprot::ChunkMod* cmod = nullptr; netprot::ChunkMod* cmod = nullptr;
if (m_mouseL) { if (!m_player.AmIDead() && m_mouseL) {
if (bulletTime <= 0.f) { if (bulletTime <= 0.f) {
for (int x = 0; x < MAX_BULLETS; ++x) // Ajouter une balle dans l'array (aussi connu sous le nom de "faire pow pow"). for (int x = 0; x < MAX_BULLETS; ++x) // Ajouter une balle dans l'array (aussi connu sous le nom de "faire pow pow").
if (!m_bullets[x]) { if (!m_bullets[x]) {
@ -1282,14 +1328,20 @@ void Engine::Render(float elapsedTime) {
else if (m_mouseR) else if (m_mouseR)
cmod = m_world.ChangeBlockAtCursor(BTYPE_METAL, m_player.GetPosition(), m_player.GetDirection(), m_block, m_networkgame); cmod = m_world.ChangeBlockAtCursor(BTYPE_METAL, m_player.GetPosition(), m_player.GetDirection(), m_block, m_networkgame);
static netprot::ChunkMod** wat = &m_chunkmod;
for (int x = 0; x < MAX_BULLETS; ++x) { // Array de bullets en jeu. for (int x = 0; x < MAX_BULLETS; ++x) { // Array de bullets en jeu.
if (m_bullets[x]) { if (m_bullets[x]) {
for (int b = 0; b < BULLET_UPDATES_PER_FRAME; ++b) { for (int b = 0; b < BULLET_UPDATES_PER_FRAME; ++b) {
if (m_bullets[x]->Update(&m_world, elapsedTime, BULLET_UPDATES_PER_FRAME, m_players, m_networkgame ? &m_chunkmod : nullptr)) { if (m_bullets[x]->Update(&m_world, elapsedTime, BULLET_UPDATES_PER_FRAME, m_players, m_networkgame ? wat : nullptr)) {
m_bullets[x]->~Bullet(); m_bullets[x]->~Bullet();
if (m_chunkmod) {
m_chunkmod_manifest.push_back(std::move(m_chunkmod));
m_chunkmod = nullptr;
}
m_bullets[x] = nullptr;
//if (m_whoosh[x]) //if (m_whoosh[x])
// m_whoosh[x]->drop(); // m_whoosh[x]->drop();
//m_bullets[x] = nullptr;
//m_whoosh[x] = nullptr; //m_whoosh[x] = nullptr;
break; break;
} }
@ -1324,7 +1376,7 @@ void Engine::Render(float elapsedTime) {
std::string user = m_player.m_username.append(" (Dead)"); std::string user = m_player.m_username.append(" (Dead)");
m_player = Player(Vector3f(.5, CHUNK_SIZE_Y + 1.7f, .5), 0, 0); m_player = Player(Vector3f(.5, CHUNK_SIZE_Y + 1.7f, .5), 0, 0);
m_player.m_username = user; m_player.m_username = user;
m_player.InflictDamage(-m_player.GetHP());
} }
m_time += elapsedTime; m_time += elapsedTime;
@ -1349,6 +1401,7 @@ void Engine::Render(float elapsedTime) {
sync_acc += tstamp - last; sync_acc += tstamp - last;
cmod_acc += tstamp - last; cmod_acc += tstamp - last;
last = tstamp;
if (sync_acc >= 1000) { if (sync_acc >= 1000) {
sync_acc -= 1000; sync_acc -= 1000;
@ -1363,9 +1416,9 @@ void Engine::Render(float elapsedTime) {
m_syncs[sync.timestamp] = sync; m_syncs[sync.timestamp] = sync;
} }
if (cmod_acc >= 1000) { if (cmod_acc >= 3000) {
while (cmod_acc >= 1000) while (cmod_acc >= 3000)
cmod_acc -= 1000; cmod_acc -= 3000;
if (!m_chunkmod_manifest.empty()) { if (!m_chunkmod_manifest.empty()) {
ChunkMod* cmod = m_chunkmod_manifest.front(); ChunkMod* cmod = m_chunkmod_manifest.front();
m_chunkmod_manifest.pop_front(); m_chunkmod_manifest.pop_front();
@ -1389,8 +1442,9 @@ void Engine::Render(float elapsedTime) {
recvPacks(m_conn.m_sock_udp, &m_buf, &lsPck); recvPacks(m_conn.m_sock_udp, &m_buf, &lsPck);
char* prevptr = nullptr; char* prevptr = nullptr;
Chat chat;
for (auto& pck : lsPck) { // We could make a few threads out of this. for (auto& pck : lsPck) { // We could make a few threads out of this.
Sync sync; Output out; ChunkMod cmod; BulletAdd bull; Chat chat; Sync sync; Output out; ChunkMod cmod; BulletAdd bull;
if (!prevptr) if (!prevptr)
prevptr = m_buf.ptr; prevptr = m_buf.ptr;
uint32_t bsize = m_buf.len - (pck - prevptr); uint32_t bsize = m_buf.len - (pck - prevptr);
@ -1406,7 +1460,9 @@ void Engine::Render(float elapsedTime) {
if (m_syncs.count(sync.timestamp)) { if (m_syncs.count(sync.timestamp)) {
Sync comp = m_syncs[sync.timestamp]; Sync comp = m_syncs[sync.timestamp];
//m_player.InflictDamage(sync.hp - comp.hp); std::cout << sync.hp << std::endl;
m_player.InflictDamage(sync.hp - comp.hp);
Vector3f diff = sync.position - comp.position; Vector3f diff = sync.position - comp.position;
@ -1463,7 +1519,7 @@ void Engine::Render(float elapsedTime) {
m_bullets[0] = bult; m_bullets[0] = bult;
break; break;
} }
m_audio.Create3DAudioObj(m_powpow, AUDIO_PATH "pow.wav", bull.pos, bull.dir * 10, false, .5f); m_audio.Create3DAudioObj(m_powpow, AUDIO_PATH "pow.wav", bull.pos, bull.dir, false, 1.f);
} }
else SystemNotification("Bullet is kraput."); else SystemNotification("Bullet is kraput.");
break; break;
@ -1583,9 +1639,11 @@ void Engine::DrawSlider(float centerX, float centerY, float value, float minVal,
} }
} }
void Engine::KeyPressEvent(unsigned char key) { void Engine::KeyPressEvent(unsigned char key) {
if (m_gamestate == LOBBY) {
m_inputChar = SimulateKeyboard(key);
return;
}
switch (key) { switch (key) {
case 0: // A - Gauche case 0: // A - Gauche
if (!m_keyA) { if (!m_keyA) {
@ -1616,7 +1674,8 @@ void Engine::KeyPressEvent(unsigned char key) {
else if (m_gamestate == GameState::PAUSE) { else if (m_gamestate == GameState::PAUSE) {
m_gamestate = GameState::PLAY; m_gamestate = GameState::PLAY;
} }
//Stop(); //m_menuaudio.ToggleMusicState();
m_audio.ToggleMusicState();
break; break;
case 57: // Space - Sauter case 57: // Space - Sauter
if (!m_keySpace) { if (!m_keySpace) {
@ -1668,6 +1727,12 @@ void Engine::KeyPressEvent(unsigned char key) {
} }
void Engine::KeyReleaseEvent(unsigned char key) { void Engine::KeyReleaseEvent(unsigned char key) {
if (m_gamestate == LOBBY) {
if (key == 38) {
m_keyShift = false;
}
return;
}
switch (key) { switch (key) {
case 0: // A - Stop gauche case 0: // A - Stop gauche
m_keyA = false; m_keyA = false;
@ -1700,7 +1765,7 @@ void Engine::KeyReleaseEvent(unsigned char key) {
m_keyL = false; m_keyL = false;
break; break;
case 12: // M - Toggle music case 12: // M - Toggle music
m_audio.ToggleMusicState(); //m_audio.ToggleMusicState();
break; break;
case 15: case 15:
for (int x = 0; x < MAX_BULLETS; ++x) // Ajouter une balle dans l'array (aussi connu sous le nom de "faire pow pow"). for (int x = 0; x < MAX_BULLETS; ++x) // Ajouter une balle dans l'array (aussi connu sous le nom de "faire pow pow").
@ -1739,12 +1804,264 @@ void Engine::KeyReleaseEvent(unsigned char key) {
case 28: // 2 case 28: // 2
m_key2 = true; m_key2 = true;
break; break;
case 38: // Shift
m_keyShift = false;
break;
case 57: // Espace - Stop sauter case 57: // Espace - Stop sauter
m_keySpace = false; m_keySpace = false;
break; break;
case 58: // Enter - comfirm input
m_keyEnter = false;
break;
case 59: // backspace - remove char
m_keyBackspace = false;
break;
} }
} }
char Engine::SimulateKeyboard(unsigned char key) {
switch (key) {
case 0: // A
if (!m_keyShift) { m_inputChar = 'a'; }
else { m_inputChar = 'A'; }
break;
case 1: // B
if (!m_keyShift) { m_inputChar = 'b'; }
else { m_inputChar = 'B'; }
break;
case 2: // C
if (!m_keyShift) { m_inputChar = 'c'; }
else { m_inputChar = 'C'; }
break;
case 3: // D
if (!m_keyShift) { m_inputChar = 'd'; }
else { m_inputChar = 'D'; }
break;
case 4: // E
if (!m_keyShift) { m_inputChar = 'e'; }
else { m_inputChar = 'E'; }
break;
case 5: // F
if (!m_keyShift) { m_inputChar = 'f'; }
else { m_inputChar = 'F'; }
break;
case 6: // G
if (!m_keyShift) { m_inputChar = 'g'; }
else { m_inputChar = 'G'; }
break;
case 7: // H
if (!m_keyShift) { m_inputChar = 'h'; }
else { m_inputChar = 'H'; }
break;
case 8: // I
if (!m_keyShift) { m_inputChar = 'i'; }
else { m_inputChar = 'I'; }
break;
case 9: // J
if (!m_keyShift) { m_inputChar = 'j'; }
else { m_inputChar = 'J'; }
break;
case 10: // K
if (!m_keyShift) { m_inputChar = 'k'; }
else { m_inputChar = 'K'; }
break;
case 11: // L
if (!m_keyShift) { m_inputChar = 'l'; }
else { m_inputChar = 'L'; }
break;
case 12: // M
if (!m_keyShift) { m_inputChar = 'm'; }
else { m_inputChar = 'M'; }
break;
case 13: // N
if (!m_keyShift) { m_inputChar = 'n'; }
else { m_inputChar = 'N'; }
break;
case 14: // O
if (!m_keyShift) { m_inputChar = 'o'; }
else { m_inputChar = 'O'; }
break;
case 15: // P
if (!m_keyShift) { m_inputChar = 'p'; }
else { m_inputChar = 'P'; }
break;
case 16: // Q
if (!m_keyShift) { m_inputChar = 'q'; }
else { m_inputChar = 'Q'; }
break;
case 17: // R
if (!m_keyShift) { m_inputChar = 'r'; }
else { m_inputChar = 'R'; }
break;
case 18: // S
if (!m_keyShift) { m_inputChar = 's'; }
else { m_inputChar = 'S'; }
break;
case 19: // T
if (!m_keyShift) { m_inputChar = 't'; }
else { m_inputChar = 'T'; }
break;
case 20: // U
if (!m_keyShift) { m_inputChar = 'u'; }
else { m_inputChar = 'U'; }
break;
case 21: // V
if (!m_keyShift) { m_inputChar = 'v'; }
else { m_inputChar = 'V'; }
break;
case 22: // W
if (!m_keyShift) { m_inputChar = 'w'; }
else { m_inputChar = 'W'; }
break;
case 23: // X
if (!m_keyShift) { m_inputChar = 'x'; }
else { m_inputChar = 'X'; }
break;
case 24: // Y
if (!m_keyShift) { m_inputChar = 'y'; }
else { m_inputChar = 'Y'; }
break;
case 25: // Z
if (!m_keyShift) { m_inputChar = 'z'; }
else { m_inputChar = 'Z'; }
break;
case 26: // 0
if (!m_keyShift) { m_inputChar = '0'; }
else { m_inputChar = ')'; }
break;
case 27: // 1
if (!m_keyShift) { m_inputChar = '1'; }
else { m_inputChar = '!'; }
break;
case 28: // 2
if (!m_keyShift) { m_inputChar = '2'; }
else { m_inputChar = '\"'; }
break;
case 29: // 3
if (!m_keyShift) { m_inputChar = '3'; }
else { m_inputChar = '/'; }
break;
case 30: // 4
if (!m_keyShift) { m_inputChar = '4'; }
else { m_inputChar = '$'; }
break;
case 31: // 5
if (!m_keyShift) { m_inputChar = '5'; }
else { m_inputChar = '%'; }
break;
case 32: // 6
if (!m_keyShift) { m_inputChar = '6'; }
else { m_inputChar = '?'; }
break;
case 33: // 7
if (!m_keyShift) { m_inputChar = '7'; }
else { m_inputChar = '&'; }
break;
case 34: // 8
if (!m_keyShift) { m_inputChar = '8'; }
else { m_inputChar = '*'; }
break;
case 35: // 9
if (!m_keyShift) { m_inputChar = '9'; }
else { m_inputChar = ')'; }
break;
case 38: // SHIFT
m_keyShift = true;
break;
case 50: // . (Period)
m_inputChar = '.';
break;
case 56: // _ (Underscore)
if (!m_keyShift) { m_inputChar = '-'; }
else { m_inputChar = '_'; }
break;
case 57: // SPACE
m_inputChar = ' ';
break;
case 58: // ENTER
m_keyEnter = true;
break;
case 59: // BACKSPACE
m_keyBackspace = true;
break;
default:
m_invalidChar = true;
break;
}
if ((int)key != 38 && !m_invalidChar) {
m_charChanged = true;
std::cout << "Key pressed: " << (int)key << " (" << m_inputChar << ")" << std::endl;
}
m_invalidChar = false;
return m_inputChar;
}
void Engine::HandlePlayerInput(float elapsedTime) {
static float lobbyTime = 0.0f;
lobbyTime += elapsedTime;
float onInterval = 0.5f;
float offInterval = 1.0f;
m_textureFont.Bind();
std::ostringstream ss;
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
if (m_charChanged) {
if (m_keyBackspace) {
if (!m_currentInputString.empty()) {
m_currentInputString.pop_back();
}
m_keyBackspace = false;
}
else if (m_keyEnter) {
if (m_settingUsername) {
if (!m_currentInputString.empty() &&
m_currentInputString.size() > 1 &&
m_currentInputString.size() < 26) {
m_username = m_currentInputString;
m_currentInputString = "";
m_settingUsername = false;
m_settingServer = true;
}
}
else if (m_settingServer) {
if (!m_currentInputString.empty()) {
m_serverAddr = m_currentInputString;
m_currentInputString = "";
m_settingServer = false;
m_multiReady = true;
}
}
m_keyEnter = false;
}
else if (m_settingUsername && m_currentInputString.size() < 26) {
m_currentInputString += m_inputChar;
}
else if (m_settingServer && m_currentInputString.size() < 15) {
m_currentInputString += m_inputChar;
}
}
ss << m_currentInputString;
m_charChanged = false;
if (lobbyTime < onInterval) {
ss << "_";
}
else if (lobbyTime > onInterval && lobbyTime < offInterval) {
ss << " ";
}
else {
lobbyTime = 0.0f;
}
PrintText(Width() * 0.6f, Height() * 0.4f, ss.str(), 2.0f);
}
void Engine::MouseMoveEvent(int x, int y) { void Engine::MouseMoveEvent(int x, int y) {
if (m_gamestate == GameState::PLAY) { if (m_gamestate == GameState::PLAY) {
m_player.TurnLeftRight(x - (Width() / 2)); m_player.TurnLeftRight(x - (Width() / 2));
@ -1832,7 +2149,8 @@ void Engine::MousePressEvent(const MOUSE_BUTTON& button, int x, int y) {
} }
else if (x > leftButton && x < rightButton && y > bottomSecond && y < topSecond) { else if (x > leftButton && x < rightButton && y > bottomSecond && y < topSecond) {
if (m_selectedPlayOptions) { if (m_selectedPlayOptions) {
m_gamestate = GameState::PLAY; m_gamestate = GameState::LOBBY;
m_settingUsername = true;
} }
else { else {
m_gamestate = GameState::OPTIONS; m_gamestate = GameState::OPTIONS;

View File

@ -46,6 +46,7 @@ private:
int GetFps(float elapsedTime) const; int GetFps(float elapsedTime) const;
int GetCountdown(float elapsedTime); int GetCountdown(float elapsedTime);
int GetOptionsChoice(); int GetOptionsChoice();
bool StartMultiplayerGame();
bool LoadTexture(Texture& texture, const std::string& filename, bool useMipmaps = true, bool stopOnError = true); bool LoadTexture(Texture& texture, const std::string& filename, bool useMipmaps = true, bool stopOnError = true);
@ -62,13 +63,16 @@ private:
void DisplayInfo(float elapsedTime, BlockType bloc); void DisplayInfo(float elapsedTime, BlockType bloc);
void DisplaySplashScreen(); void DisplaySplashScreen();
void DisplayPauseMenu();
void DisplayMainMenu(); void DisplayMainMenu();
void DrawButtonBackgrounds(float centerX, float centerY, int iterations); void DrawButtonBackgrounds(float centerX, float centerY, int iterations);
void DrawMainMenuButtons(float centerX, float centerY); void DrawMainMenuButtons(float centerX, float centerY);
void DrawSingleMultiButtons(float centerX, float centerY); void DrawSingleMultiButtons(float centerX, float centerY);
void DisplayLobbyMenu(float elapsedTime);
void SetPlayerUsername(float elapsedTime);
void SetServerAddress(float elapsedTime);
void DisplayOptionsMenu(); void DisplayOptionsMenu();
void DisplayAudioMenu(float centerX, float centerY); void DisplayAudioMenu(float centerX, float centerY);
void DisplayGraphicsMenu(float centerX, float centerY); void DisplayGraphicsMenu(float centerX, float centerY);
@ -77,11 +81,13 @@ private:
void DisplayBarPercentValue(float centerX, float centerY, float posX, float posY, float minVal, float maxVal, float value); void DisplayBarPercentValue(float centerX, float centerY, float posX, float posY, float minVal, float maxVal, float value);
void DrawSlider(float centerX, float centerY, float value, float minVal, float maxVal, float bottomSideValue, float topSideValue); void DrawSlider(float centerX, float centerY, float value, float minVal, float maxVal, float bottomSideValue, float topSideValue);
void PrintText(float x, float y, const std::string& t, float charSizeMultiplier = 1.0f); void PrintText(float x, float y, const std::string& t, float charSizeMultiplier = 1.0f);
void ProcessNotificationQueue(); void ProcessNotificationQueue();
char SimulateKeyboard(unsigned char key);
void HandlePlayerInput(float elapsedTime);
Audio m_audio = Audio(AUDIO_PATH "start.wav"); //udio m_menuaudio = Audio(AUDIO_PATH "menumusic.wav");
Audio m_audio = Audio(AUDIO_PATH "music01.wav");
irrklang::ISound* m_powpow, * m_scream; irrklang::ISound* m_powpow, * m_scream;
irrklang::ISound* m_whoosh[MAX_BULLETS]; irrklang::ISound* m_whoosh[MAX_BULLETS];
@ -99,7 +105,7 @@ private:
BlockInfo* m_blockinfo[BTYPE_LAST]; BlockInfo* m_blockinfo[BTYPE_LAST];
BoostInfo* m_boostinfo[BTYPE_BOOST_LAST]; BoostInfo* m_boostinfo[BTYPE_BOOST_LAST];
GameState m_gamestate = GameState::PLAY; GameState m_gamestate = GameState::SPLASH;
Shader m_shader01; Shader m_shader01;
@ -116,6 +122,7 @@ private:
Texture m_texturePovGun; Texture m_texturePovGun;
Texture m_textureSkybox; Texture m_textureSkybox;
Texture m_textureLobbyMenu;
Texture m_textureMainMenu; Texture m_textureMainMenu;
Texture m_textureOptionsMenu; Texture m_textureOptionsMenu;
Texture m_texturePauseMenu; Texture m_texturePauseMenu;
@ -125,6 +132,9 @@ private:
Texture m_textureFhd; Texture m_textureFhd;
Texture m_textureQhd; Texture m_textureQhd;
Texture m_textureUhd; Texture m_textureUhd;
Texture m_textureLobbyServer;
Texture m_textureLobbyIdentify;
Texture m_textureCheck; Texture m_textureCheck;
Texture m_textureChecked; Texture m_textureChecked;
@ -190,6 +200,16 @@ private:
bool m_selectedPlayOptions = false; bool m_selectedPlayOptions = false;
bool m_selectedOptions = false; bool m_selectedOptions = false;
bool m_selectedQuit = false; bool m_selectedQuit = false;
std::string m_currentInputString;
std::string m_username;
std::string m_serverAddr;
char m_inputChar = 0;
bool m_invalidChar = false;
bool m_charChanged = false;
bool m_settingUsername = false;
bool m_settingServer = false;
bool m_multiReady = false;
bool m_key1 = false; bool m_key1 = false;
bool m_key2 = false; bool m_key2 = false;
@ -199,7 +219,10 @@ private:
bool m_keyA = false; bool m_keyA = false;
bool m_keyS = false; bool m_keyS = false;
bool m_keyD = false; bool m_keyD = false;
bool m_keyEnter = false;
bool m_keySpace = false; bool m_keySpace = false;
bool m_keyShift = false;
bool m_keyBackspace = false;
bool m_mouseL = false; bool m_mouseL = false;
bool m_mouseR = false; bool m_mouseR = false;
@ -218,9 +241,8 @@ private:
std::unordered_map<uint64_t, Player*> m_players; std::unordered_map<uint64_t, Player*> m_players;
netprot::Buffer m_buf, m_bufout; netprot::Buffer m_buf, m_bufout;
netprot::ChunkMod* m_chunkmod = nullptr; netprot::ChunkMod* m_chunkmod = nullptr;
netprot::PlayerInfo m_pinfo;
std::unordered_map<uint64_t, netprot::Sync> m_syncs; std::unordered_map<uint64_t, netprot::Sync> m_syncs;
RemotePlayer m_remotePlayer = RemotePlayer(netprot::PlayerInfo(),Vector3f(5.5f, CHUNK_SIZE_Y + 1.8f, 5.5f));
std::string m_messageNotification = ""; std::string m_messageNotification = "";
}; };

Binary file not shown.

After

Width:  |  Height:  |  Size: 505 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB