summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2015-08-13 13:26:48 +0100
committerOlivier Gayot <duskcoder@gmail.com>2015-08-13 13:26:48 +0100
commit2526dbd7faefc2d55118925a58054604b5f9f27d (patch)
treee3c4b414f34ecdb253c98bb314191f8e9a7f8f78
parent3bd34b9d50958241955ce1b641af78273fe5f3fe (diff)
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 <duskcoder@gmail.com>
-rw-r--r--Client.cpp37
-rw-r--r--Client.h52
2 files changed, 89 insertions, 0 deletions
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 */