From 2526dbd7faefc2d55118925a58054604b5f9f27d Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Thu, 13 Aug 2015 13:26:48 +0100 Subject: Added the Client interface A Player will be bound a Client interface which will disregard whether or not it is a Computer (AI), a local player or a remote player. Signed-off-by: Olivier Gayot --- Client.cpp | 37 +++++++++++++++++++++++++++++++++++++ Client.h | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 89 insertions(+) create mode 100644 Client.cpp create mode 100644 Client.h diff --git a/Client.cpp b/Client.cpp new file mode 100644 index 0000000..40ef312 --- /dev/null +++ b/Client.cpp @@ -0,0 +1,37 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2015 Olivier Gayot + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +#include "Client.h" + +Client::Client() + : _player(nullptr), fd(0) +{ +} + +bool Client::has_player() const +{ + return (this->_player) ? true : false; +} + + diff --git a/Client.h b/Client.h new file mode 100644 index 0000000..6dd23bc --- /dev/null +++ b/Client.h @@ -0,0 +1,52 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2015 Olivier Gayot + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +#ifndef CLIENT_H +#define CLIENT_H + +#include "Player.h" + +class Client { + public: + Client(); + bool has_player() const; + + private: + Player *_player; + + int fd; +}; + +class Computer : public Client { + public: + Computer(); +}; + +class Local_human : public Client { + public: + Local_human(); + +}; + +#endif /* CLIENT_H */ -- cgit v1.2.3