Alvaro Cassinelli / Mbed 2 deprecated laserUI

Dependencies:   mbed

Fork of skinGames_forktest by Alvaro Cassinelli

Committer:
mbedalvaro
Date:
Sun Sep 23 10:11:43 2012 +0000
Revision:
31:5f039cbddee8
this is quite nice, but  I am going to make a deep modification of the bouncing principle: instead of depending on the penetration, it will just be a factor over the speed (perfect elastic bouncing being factorElastic=1, and perfectly absorption=0);

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbedalvaro 31:5f039cbddee8 1
mbedalvaro 31:5f039cbddee8 2 /*
mbedalvaro 31:5f039cbddee8 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
mbedalvaro 31:5f039cbddee8 4
mbedalvaro 31:5f039cbddee8 5 Permission is hereby granted, free of charge, to any person obtaining a copy
mbedalvaro 31:5f039cbddee8 6 of this software and associated documentation files (the "Software"), to deal
mbedalvaro 31:5f039cbddee8 7 in the Software without restriction, including without limitation the rights
mbedalvaro 31:5f039cbddee8 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
mbedalvaro 31:5f039cbddee8 9 copies of the Software, and to permit persons to whom the Software is
mbedalvaro 31:5f039cbddee8 10 furnished to do so, subject to the following conditions:
mbedalvaro 31:5f039cbddee8 11
mbedalvaro 31:5f039cbddee8 12 The above copyright notice and this permission notice shall be included in
mbedalvaro 31:5f039cbddee8 13 all copies or substantial portions of the Software.
mbedalvaro 31:5f039cbddee8 14
mbedalvaro 31:5f039cbddee8 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
mbedalvaro 31:5f039cbddee8 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
mbedalvaro 31:5f039cbddee8 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
mbedalvaro 31:5f039cbddee8 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
mbedalvaro 31:5f039cbddee8 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
mbedalvaro 31:5f039cbddee8 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
mbedalvaro 31:5f039cbddee8 21 THE SOFTWARE.
mbedalvaro 31:5f039cbddee8 22 */
mbedalvaro 31:5f039cbddee8 23
mbedalvaro 31:5f039cbddee8 24 #ifndef NETIF_H
mbedalvaro 31:5f039cbddee8 25 #define NETIF_H
mbedalvaro 31:5f039cbddee8 26
mbedalvaro 31:5f039cbddee8 27 #include "core/ipaddr.h"
mbedalvaro 31:5f039cbddee8 28 /*
mbedalvaro 31:5f039cbddee8 29 #include "nettcpsocket.h"
mbedalvaro 31:5f039cbddee8 30 #include "netudpsocket.h"
mbedalvaro 31:5f039cbddee8 31 #include "netdnsrequest.h"
mbedalvaro 31:5f039cbddee8 32 */
mbedalvaro 31:5f039cbddee8 33 class NetTcpSocket;
mbedalvaro 31:5f039cbddee8 34 class NetUdpSocket;
mbedalvaro 31:5f039cbddee8 35 class NetDnsRequest;
mbedalvaro 31:5f039cbddee8 36
mbedalvaro 31:5f039cbddee8 37 #if 0
mbedalvaro 31:5f039cbddee8 38 enum NetifEvent
mbedalvaro 31:5f039cbddee8 39 {
mbedalvaro 31:5f039cbddee8 40 NETIF_CONNECTED, //Connected, can create & use sockets now
mbedalvaro 31:5f039cbddee8 41 NETIF_DNSREPLY,
mbedalvaro 31:5f039cbddee8 42 NETIF_DISCONNECTED
mbedalvaro 31:5f039cbddee8 43 };
mbedalvaro 31:5f039cbddee8 44 #endif
mbedalvaro 31:5f039cbddee8 45
mbedalvaro 31:5f039cbddee8 46 class NetIf
mbedalvaro 31:5f039cbddee8 47 {
mbedalvaro 31:5f039cbddee8 48 public:
mbedalvaro 31:5f039cbddee8 49 NetIf();
mbedalvaro 31:5f039cbddee8 50 virtual ~NetIf();
mbedalvaro 31:5f039cbddee8 51 virtual NetTcpSocket* tcpSocket() = 0; //Create a new tcp socket
mbedalvaro 31:5f039cbddee8 52 virtual NetUdpSocket* udpSocket() = 0; //Create a new udp socket
mbedalvaro 31:5f039cbddee8 53 virtual void poll() = 0;
mbedalvaro 31:5f039cbddee8 54 virtual NetDnsRequest* dnsRequest(const char* hostname) = 0; //Create a new NetDnsRequest object
mbedalvaro 31:5f039cbddee8 55 virtual NetDnsRequest* dnsRequest(Host* pHost) = 0; //Create a new NetDnsRequest object
mbedalvaro 31:5f039cbddee8 56
mbedalvaro 31:5f039cbddee8 57 //!Returns the IP of the interface once it's connected
mbedalvaro 31:5f039cbddee8 58 IpAddr getIp() const;
mbedalvaro 31:5f039cbddee8 59
mbedalvaro 31:5f039cbddee8 60 protected:
mbedalvaro 31:5f039cbddee8 61 IpAddr m_ip;
mbedalvaro 31:5f039cbddee8 62 };
mbedalvaro 31:5f039cbddee8 63
mbedalvaro 31:5f039cbddee8 64 #endif