ServerAgent.h

Go to the documentation of this file.
00001 /*
00002  * This file is part of Micole Architecture
00003  *
00004  * Copyright (C) 2007 Micole partners
00005  *
00006  * Micole Architecture is free software: you can redistribute it 
00007  * and/or modify it under the terms of the GNU Lesser General 
00008  * Public License as published by the Free Software Foundation, 
00009  * either version 3 of the License, or (at your option) any 
00010  * later version.
00011  *
00012  * Micole Architecture is distributed in the hope that it will be 
00013  * useful, * but WITHOUT ANY WARRANTY; without even the implied 
00014  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00015  * PURPOSE.  See the GNU Lesser General Public License for more 
00016  * details.
00017  *
00018  * You should have received a copy of the GNU Lesser General Public
00019  * License along with Micole Architecture.  If not, see
00020  * <http://www.gnu.org/licenses/>.
00021  */
00022 
00023 #ifndef ServerAgent_H
00024 #define ServerAgent_H
00025 #include "micolelib.h"
00026 
00027 #define BUTTON_LAG 0.1 
00029 #include <config.h>
00030 #include "MicoleAgentThread.h"
00031 #include "DServerAgent.h"
00032 
00033 #include <Display.h>
00034 #include <Scene.h>
00035 #include <Node.h>
00036 #include <Field.h>
00037 
00038 #include <iostream>
00039 #include <list>
00040 
00041 using namespace Reachin;
00042 using namespace std;
00043 
00044 class DServerAgent;
00045 
00053 class MICOLELIB_API ServerAgent : public MicoleAgentThread
00054 {
00055         private:
00056                 int _port;
00057                 list<DServerAgent *> _DServList;
00058 
00059 
00060         public:
00061                 ServerAgent(int port); 
00062                 
00063                 ~ServerAgent();
00064 
00068                 virtual void run();
00069 
00070                 //void sendOnAllNetwork(string s);
00071                 void sendOnAllClients(string s);
00072 
00073                 void removeThread(DServerAgent * srv) {
00074                         _DServList.remove(srv);
00075                 }
00076 
00077         protected:
00081                 virtual void prepareToStop(int argc, const char **argv);
00085                 virtual void prepareToSuspend(int argc, const char **argv);
00086 
00087 
00088 };
00089 
00090 #endif

Generated on Tue Oct 16 17:10:43 2007 for Micole by  doxygen 1.4.7