From 69209c38968c6f4066a772e0a51a2928749217de Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Fri, 9 Dec 2011 19:00:23 +0000 Subject: Re-indenting the code to use standard tabs. Yes, I know this is pretty pointless, but who cares? --- Stars45/NetUser.cpp | 128 ++++++++++++++++++++++++++-------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) (limited to 'Stars45/NetUser.cpp') diff --git a/Stars45/NetUser.cpp b/Stars45/NetUser.cpp index ce9217f..65ba2f0 100644 --- a/Stars45/NetUser.cpp +++ b/Stars45/NetUser.cpp @@ -1,15 +1,15 @@ /* Project Starshatter 4.5 - Destroyer Studios LLC - Copyright © 1997-2004. All Rights Reserved. + Destroyer Studios LLC + Copyright © 1997-2004. All Rights Reserved. - SUBSYSTEM: Stars.exe - FILE: NetUser.cpp - AUTHOR: John DiCamillo + SUBSYSTEM: Stars.exe + FILE: NetUser.cpp + AUTHOR: John DiCamillo - OVERVIEW - ======== - This class represents a user connecting to the multiplayer lobby + OVERVIEW + ======== + This class represents a user connecting to the multiplayer lobby */ @@ -23,18 +23,18 @@ // +-------------------------------------------------------------------+ static Color user_colors[] = { - Color::BrightBlue, - Color::BrightRed, - Color::BrightGreen, - Color::Cyan, - Color::Orange, - Color::Magenta, - Color::Yellow, - Color::White, - Color::Gray, - Color::DarkRed, - Color::Tan, - Color::Violet + Color::BrightBlue, + Color::BrightRed, + Color::BrightGreen, + Color::Cyan, + Color::Orange, + Color::Magenta, + Color::Yellow, + Color::White, + Color::Gray, + Color::DarkRed, + Color::Tan, + Color::Violet }; static int user_color_index = 0; @@ -42,43 +42,43 @@ static int user_color_index = 0; // +-------------------------------------------------------------------+ NetUser::NetUser(const char* n) - : name(n), netid(0), host(false), - rank(0), flight_time(0), missions(0), kills(0), losses(0), - auth_state(NetAuth::NET_AUTH_INITIAL), - auth_level(NetAuth::NET_AUTH_MINIMAL) +: name(n), netid(0), host(false), +rank(0), flight_time(0), missions(0), kills(0), losses(0), +auth_state(NetAuth::NET_AUTH_INITIAL), +auth_level(NetAuth::NET_AUTH_MINIMAL) { - if (user_color_index < 0 || user_color_index >= 12) - user_color_index = 0; + if (user_color_index < 0 || user_color_index >= 12) + user_color_index = 0; - color = user_colors[user_color_index++]; + color = user_colors[user_color_index++]; - ZeroMemory(salt, sizeof(salt)); + ZeroMemory(salt, sizeof(salt)); } NetUser::NetUser(const Player* player) - : netid(0), host(false), - rank(0), flight_time(0), missions(0), kills(0), losses(0), - auth_state(NetAuth::NET_AUTH_INITIAL), - auth_level(NetAuth::NET_AUTH_MINIMAL) +: netid(0), host(false), +rank(0), flight_time(0), missions(0), kills(0), losses(0), +auth_state(NetAuth::NET_AUTH_INITIAL), +auth_level(NetAuth::NET_AUTH_MINIMAL) { - if (user_color_index < 0 || user_color_index >= 12) - user_color_index = 0; - - color = user_colors[user_color_index++]; - - if (player) { - name = player->Name(); - pass = player->Password(); - signature = player->Signature(); - squadron = player->Squadron(); - rank = player->Rank(); - flight_time = player->FlightTime(); - missions = player->Missions(); - kills = player->Kills(); - losses = player->Losses(); - } - - ZeroMemory(salt, sizeof(salt)); + if (user_color_index < 0 || user_color_index >= 12) + user_color_index = 0; + + color = user_colors[user_color_index++]; + + if (player) { + name = player->Name(); + pass = player->Password(); + signature = player->Signature(); + squadron = player->Squadron(); + rank = player->Rank(); + flight_time = player->FlightTime(); + missions = player->Missions(); + kills = player->Kills(); + losses = player->Losses(); + } + + ZeroMemory(salt, sizeof(salt)); } NetUser::~NetUser() @@ -89,23 +89,23 @@ NetUser::~NetUser() Text NetUser::GetDescription() { - Text content; + Text content; - content += "name \""; - content += SafeQuotes(name); - content += "\" sig \""; - content += SafeQuotes(signature); - content += "\" squad \""; - content += SafeQuotes(squadron); + content += "name \""; + content += SafeQuotes(name); + content += "\" sig \""; + content += SafeQuotes(signature); + content += "\" squad \""; + content += SafeQuotes(squadron); - char buffer[256]; - sprintf(buffer, "\" rank %d time %d miss %d kill %d loss %d host %s ", - rank, flight_time, missions, kills, losses, - host ? "true" : "false"); + char buffer[256]; + sprintf(buffer, "\" rank %d time %d miss %d kill %d loss %d host %s ", + rank, flight_time, missions, kills, losses, + host ? "true" : "false"); - content += buffer; + content += buffer; - return content; + return content; } // +-------------------------------------------------------------------+ @@ -113,5 +113,5 @@ NetUser::GetDescription() bool NetUser::IsAuthOK() const { - return auth_state == NetAuth::NET_AUTH_OK; + return auth_state == NetAuth::NET_AUTH_OK; } \ No newline at end of file -- cgit v1.1