Laser Sensing Display for UI interfaces in the real world

Dependencies:   mbed

Fork of skinGames_forktest by Alvaro Cassinelli

Committer:
mbedalvaro
Date:
Wed Mar 28 14:40:01 2012 +0000
Revision:
0:345b3bc7a0ea
This version (using rigid frame, base and child classes, etc) works, but the blob is strangely smaller. Need to check this.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbedalvaro 0:345b3bc7a0ea 1
mbedalvaro 0:345b3bc7a0ea 2 /*
mbedalvaro 0:345b3bc7a0ea 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
mbedalvaro 0:345b3bc7a0ea 4
mbedalvaro 0:345b3bc7a0ea 5 Permission is hereby granted, free of charge, to any person obtaining a copy
mbedalvaro 0:345b3bc7a0ea 6 of this software and associated documentation files (the "Software"), to deal
mbedalvaro 0:345b3bc7a0ea 7 in the Software without restriction, including without limitation the rights
mbedalvaro 0:345b3bc7a0ea 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
mbedalvaro 0:345b3bc7a0ea 9 copies of the Software, and to permit persons to whom the Software is
mbedalvaro 0:345b3bc7a0ea 10 furnished to do so, subject to the following conditions:
mbedalvaro 0:345b3bc7a0ea 11
mbedalvaro 0:345b3bc7a0ea 12 The above copyright notice and this permission notice shall be included in
mbedalvaro 0:345b3bc7a0ea 13 all copies or substantial portions of the Software.
mbedalvaro 0:345b3bc7a0ea 14
mbedalvaro 0:345b3bc7a0ea 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
mbedalvaro 0:345b3bc7a0ea 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
mbedalvaro 0:345b3bc7a0ea 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
mbedalvaro 0:345b3bc7a0ea 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
mbedalvaro 0:345b3bc7a0ea 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
mbedalvaro 0:345b3bc7a0ea 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
mbedalvaro 0:345b3bc7a0ea 21 THE SOFTWARE.
mbedalvaro 0:345b3bc7a0ea 22 */
mbedalvaro 0:345b3bc7a0ea 23
mbedalvaro 0:345b3bc7a0ea 24 /**
mbedalvaro 0:345b3bc7a0ea 25 \file Net Service base class header file
mbedalvaro 0:345b3bc7a0ea 26 */
mbedalvaro 0:345b3bc7a0ea 27
mbedalvaro 0:345b3bc7a0ea 28 #ifndef NETSERVICE_H
mbedalvaro 0:345b3bc7a0ea 29 #define NETSERVICE_H
mbedalvaro 0:345b3bc7a0ea 30
mbedalvaro 0:345b3bc7a0ea 31 #include <list>
mbedalvaro 0:345b3bc7a0ea 32 using std::list;
mbedalvaro 0:345b3bc7a0ea 33
mbedalvaro 0:345b3bc7a0ea 34 ///Net Service base class
mbedalvaro 0:345b3bc7a0ea 35 /**
mbedalvaro 0:345b3bc7a0ea 36 Each connection-oriented object can register as service (by inheriting this class), so that it is polled regularly.
mbedalvaro 0:345b3bc7a0ea 37 It notifies the pool when the connection is terminated so that it can be destroyed.
mbedalvaro 0:345b3bc7a0ea 38 */
mbedalvaro 0:345b3bc7a0ea 39 class NetService
mbedalvaro 0:345b3bc7a0ea 40 {
mbedalvaro 0:345b3bc7a0ea 41 public:
mbedalvaro 0:345b3bc7a0ea 42 ///Instantiates a new service
mbedalvaro 0:345b3bc7a0ea 43 /**
mbedalvaro 0:345b3bc7a0ea 44 @param owned If true the object is owned by the pool and will be destroyed on closure.
mbedalvaro 0:345b3bc7a0ea 45 */
mbedalvaro 0:345b3bc7a0ea 46 NetService(bool owned = true); //Is owned by the pool?
mbedalvaro 0:345b3bc7a0ea 47 virtual ~NetService();
mbedalvaro 0:345b3bc7a0ea 48
mbedalvaro 0:345b3bc7a0ea 49 ///This method can be inherited so that it is called on each @a Net::poll() call.
mbedalvaro 0:345b3bc7a0ea 50 virtual void poll();
mbedalvaro 0:345b3bc7a0ea 51
mbedalvaro 0:345b3bc7a0ea 52 static void servicesPoll(); //Poll all registered services & destroy closed ones
mbedalvaro 0:345b3bc7a0ea 53
mbedalvaro 0:345b3bc7a0ea 54 protected:
mbedalvaro 0:345b3bc7a0ea 55 ///This flags the service as to be destructed if owned by the pool.
mbedalvaro 0:345b3bc7a0ea 56 void close();
mbedalvaro 0:345b3bc7a0ea 57
mbedalvaro 0:345b3bc7a0ea 58 private:
mbedalvaro 0:345b3bc7a0ea 59 bool m_closed;
mbedalvaro 0:345b3bc7a0ea 60 bool m_removed;
mbedalvaro 0:345b3bc7a0ea 61 bool m_owned;
mbedalvaro 0:345b3bc7a0ea 62
mbedalvaro 0:345b3bc7a0ea 63 static list<NetService*>& lpServices(); //Helper to prevent static initialization fiasco
mbedalvaro 0:345b3bc7a0ea 64
mbedalvaro 0:345b3bc7a0ea 65 };
mbedalvaro 0:345b3bc7a0ea 66
mbedalvaro 0:345b3bc7a0ea 67 #endif