PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Committer:
spinal
Date:
Sun Nov 18 15:47:54 2018 +0000
Revision:
64:6e6c6c2b664e
Parent:
35:4f7edccf8ed6
added fix for directrectangle()

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 0:e8b8f36b4505 1 /**************************************************************************/
Pokitto 0:e8b8f36b4505 2 /*!
Pokitto 0:e8b8f36b4505 3 @file Pokitto.h
Pokitto 0:e8b8f36b4505 4 @author Jonne Valola
Pokitto 0:e8b8f36b4505 5
Pokitto 0:e8b8f36b4505 6 @section LICENSE
Pokitto 0:e8b8f36b4505 7
Pokitto 0:e8b8f36b4505 8 Software License Agreement (BSD License)
Pokitto 0:e8b8f36b4505 9
Pokitto 0:e8b8f36b4505 10 Copyright (c) 2016, Jonne Valola
Pokitto 0:e8b8f36b4505 11 All rights reserved.
Pokitto 0:e8b8f36b4505 12
Pokitto 0:e8b8f36b4505 13 Redistribution and use in source and binary forms, with or without
Pokitto 0:e8b8f36b4505 14 modification, are permitted provided that the following conditions are met:
Pokitto 0:e8b8f36b4505 15 1. Redistributions of source code must retain the above copyright
Pokitto 0:e8b8f36b4505 16 notice, this list of conditions and the following disclaimer.
Pokitto 0:e8b8f36b4505 17 2. Redistributions in binary form must reproduce the above copyright
Pokitto 0:e8b8f36b4505 18 notice, this list of conditions and the following disclaimer in the
Pokitto 0:e8b8f36b4505 19 documentation and/or other materials provided with the distribution.
Pokitto 0:e8b8f36b4505 20 3. Neither the name of the copyright holders nor the
Pokitto 0:e8b8f36b4505 21 names of its contributors may be used to endorse or promote products
Pokitto 0:e8b8f36b4505 22 derived from this software without specific prior written permission.
Pokitto 0:e8b8f36b4505 23
Pokitto 0:e8b8f36b4505 24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
Pokitto 0:e8b8f36b4505 25 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
Pokitto 0:e8b8f36b4505 26 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Pokitto 0:e8b8f36b4505 27 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
Pokitto 0:e8b8f36b4505 28 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
Pokitto 0:e8b8f36b4505 29 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
Pokitto 0:e8b8f36b4505 30 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
Pokitto 0:e8b8f36b4505 31 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Pokitto 0:e8b8f36b4505 32 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Pokitto 0:e8b8f36b4505 33 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Pokitto 0:e8b8f36b4505 34 */
Pokitto 0:e8b8f36b4505 35 /**************************************************************************/
Pokitto 0:e8b8f36b4505 36
Pokitto 0:e8b8f36b4505 37 #ifndef __POKITTO_H__
Pokitto 0:e8b8f36b4505 38 #define __POKITTO_H__
Pokitto 0:e8b8f36b4505 39
Pokitto 0:e8b8f36b4505 40 #include "Pokitto_settings.h"
Pokitto 0:e8b8f36b4505 41 #include "PokittoCore.h"
Pokitto 0:e8b8f36b4505 42
Pokitto 0:e8b8f36b4505 43 //typedef void (*funcptr)(PokittoApp&);
Pokitto 0:e8b8f36b4505 44
Pokitto 0:e8b8f36b4505 45 #ifndef POK_SIM
Pokitto 0:e8b8f36b4505 46 #include "mbed.h"
Pokitto 0:e8b8f36b4505 47 #include "HWLCD.h"
Pokitto 0:e8b8f36b4505 48 #include "PokittoTimer.h"
Pokitto 0:e8b8f36b4505 49 #include "Pokitto_extport.h"
Pokitto 0:e8b8f36b4505 50 #include "PokittoEEPROM.h"
Pokitto 0:e8b8f36b4505 51 #else
Pokitto 0:e8b8f36b4505 52 #include "PokittoSimulator.h"
Pokitto 0:e8b8f36b4505 53 #endif // if not POK_SIM
Pokitto 0:e8b8f36b4505 54
Pokitto 0:e8b8f36b4505 55
Pokitto 0:e8b8f36b4505 56 #if POK_ENABLE_SD > 0
Pokitto 0:e8b8f36b4505 57 #ifndef POK_SIM
Pokitto 0:e8b8f36b4505 58 #include "PokittoDisk.h"
Pokitto 0:e8b8f36b4505 59 #else
Pokitto 0:e8b8f36b4505 60 #include "FileIO.h"
Pokitto 0:e8b8f36b4505 61 #endif // if not POK_SIM
Pokitto 0:e8b8f36b4505 62 //#include "ImageFormat.h"
Pokitto 0:e8b8f36b4505 63 #endif // if SD ENABLED
Pokitto 0:e8b8f36b4505 64
Pokitto 0:e8b8f36b4505 65 #if POK_ENABLE_SOUND > 0
Pokitto 0:e8b8f36b4505 66 #if POK_ENABLE_SYNTH > 0
Pokitto 0:e8b8f36b4505 67 #include "Synth.h"
Pokitto 0:e8b8f36b4505 68 #endif
Pokitto 0:e8b8f36b4505 69 extern uint8_t soundbuf[];
Pokitto 35:4f7edccf8ed6 70 extern uint16_t soundbufindex;
Pokitto 35:4f7edccf8ed6 71 extern uint8_t* soundbufptr;
Pokitto 0:e8b8f36b4505 72 #ifndef POK_SIM
Pokitto 0:e8b8f36b4505 73 #include "HWSound.h"
Pokitto 0:e8b8f36b4505 74 #endif // if not POK_SIM
Pokitto 0:e8b8f36b4505 75 #endif // if POK_ENABLE_SOUND
Pokitto 0:e8b8f36b4505 76
Pokitto 0:e8b8f36b4505 77 /*extern void dac_write(uint8_t);
Pokitto 0:e8b8f36b4505 78 extern void ext_write(uint32_t);
Pokitto 0:e8b8f36b4505 79 extern uint16_t pokGetBattP1();
Pokitto 0:e8b8f36b4505 80 extern uint16_t pokGetBattP2();
Pokitto 0:e8b8f36b4505 81 extern void pokInitRandom();
Pokitto 0:e8b8f36b4505 82 extern void pokSoundIRQ();
Pokitto 0:e8b8f36b4505 83 */
Pokitto 0:e8b8f36b4505 84
Pokitto 0:e8b8f36b4505 85 #endif //__POKITTO_H__
Pokitto 0:e8b8f36b4505 86
Pokitto 30:796f9611d2ac 87