clang-format everything

This commit is contained in:
Lion Kortlepel
2020-11-12 17:09:14 +01:00
parent c9f5ee9729
commit 58e65cf43f
29 changed files with 716 additions and 677 deletions

View File

@@ -3,104 +3,103 @@
///
#include "Client.hpp"
std::string Client::GetName(){
std::string Client::GetName() {
return Name;
}
void Client::SetName(const std::string& name){
void Client::SetName(const std::string& name) {
Name = name;
}
void Client::SetDID(const std::string& did){
void Client::SetDID(const std::string& did) {
DID = did;
}
std::string Client::GetDID(){
std::string Client::GetDID() {
return DID;
}
void Client::SetRole(const std::string& role){
void Client::SetRole(const std::string& role) {
Role = role;
}
std::string Client::GetRole(){
std::string Client::GetRole() {
return Role;
}
int Client::GetID(){
int Client::GetID() {
return ID;
}
void Client::SetID(int id){
void Client::SetID(int id) {
ID = id;
}
void Client::SetStatus(int state){
void Client::SetStatus(int state) {
Status = state;
}
int Client::GetStatus(){
int Client::GetStatus() {
return Status;
}
void Client::SetUDPAddr(sockaddr_in Addr){
void Client::SetUDPAddr(sockaddr_in Addr) {
UDPADDR = Addr;
}
sockaddr_in Client::GetUDPAddr(){
sockaddr_in Client::GetUDPAddr() {
return UDPADDR;
}
void Client::SetTCPSock(SOCKET CSock) {
TCPSOCK = CSock;
}
SOCKET Client::GetTCPSock(){
SOCKET Client::GetTCPSock() {
return TCPSOCK;
}
void Client::DeleteCar(int ident){
for(auto& v : VehicleData){
if(v != nullptr && v->ID == ident){
void Client::DeleteCar(int ident) {
for (auto& v : VehicleData) {
if (v != nullptr && v->ID == ident) {
VehicleData.erase(v);
break;
}
}
}
void Client::ClearCars(){
void Client::ClearCars() {
VehicleData.clear();
}
int Client::GetOpenCarID(){
int Client::GetOpenCarID() {
int OpenID = 0;
bool found;
do {
found = true;
for (auto& v : VehicleData) {
if (v != nullptr && v->ID == OpenID){
if (v != nullptr && v->ID == OpenID) {
OpenID++;
found = false;
}
}
}while (!found);
} while (!found);
return OpenID;
}
void Client::AddNewCar(int ident,const std::string& Data){
VehicleData.insert(std::unique_ptr<VData>(new VData{ident,Data}));
void Client::AddNewCar(int ident, const std::string& Data) {
VehicleData.insert(std::unique_ptr<VData>(new VData { ident, Data }));
}
std::set<std::unique_ptr<VData>>& Client::GetAllCars(){
std::set<std::unique_ptr<VData>>& Client::GetAllCars() {
return VehicleData;
}
const std::set<std::unique_ptr<VData>> &Client::GetAllCars() const {
const std::set<std::unique_ptr<VData>>& Client::GetAllCars() const {
return VehicleData;
}
std::string Client::GetCarData(int ident){
for(auto& v : VehicleData){
if(v != nullptr && v->ID == ident){
std::string Client::GetCarData(int ident) {
for (auto& v : VehicleData) {
if (v != nullptr && v->ID == ident) {
return v->Data;
}
}
DeleteCar(ident);
return "";
}
void Client::SetCarData(int ident,const std::string&Data){
for(auto& v : VehicleData){
if(v != nullptr && v->ID == ident){
void Client::SetCarData(int ident, const std::string& Data) {
for (auto& v : VehicleData) {
if (v != nullptr && v->ID == ident) {
v->Data = Data;
return;
}
}
DeleteCar(ident);
}
int Client::GetCarCount(){
int Client::GetCarCount() {
return int(VehicleData.size());
}