[1505] | 1 | ====================================================================================== |
---|
| 2 | ================ LICENSE ============================================================= |
---|
| 3 | ====================================================================================== |
---|
| 4 | |
---|
| 5 | The zlib/libpng License |
---|
| 6 | |
---|
| 7 | Copyright (c) 2005-2007 Phillip Castaneda (pjcast -- www.wreckedgames.com) |
---|
| 8 | |
---|
| 9 | This software is provided 'as-is', without any express or implied warranty. In no |
---|
| 10 | event will the authors be held liable for any damages arising from the use of this |
---|
| 11 | software. |
---|
| 12 | |
---|
| 13 | Permission is granted to anyone to use this software for any purpose, including |
---|
| 14 | commercial applications, and to alter it and redistribute it freely, subject to the |
---|
| 15 | following restrictions: |
---|
| 16 | |
---|
| 17 | 1. The origin of this software must not be misrepresented; you must not claim that |
---|
| 18 | you wrote the original software. If you use this software in a product, |
---|
| 19 | an acknowledgment in the product documentation would be appreciated |
---|
| 20 | but is not required. |
---|
| 21 | |
---|
| 22 | 2. Altered source versions must be plainly marked as such, and must not be |
---|
| 23 | misrepresented as being the original software. |
---|
| 24 | |
---|
| 25 | 3. This notice may not be removed or altered from any source distribution. |
---|
| 26 | |
---|
| 27 | |
---|
| 28 | ====================================================================================== |
---|
| 29 | ================ LICENSE EXPLAINED =================================================== |
---|
| 30 | ====================================================================================== |
---|
| 31 | In case the license was not clear enough... Basically, you can link with this lib |
---|
| 32 | which puts no restrictions on what you have to license your code as. You can modify |
---|
| 33 | this lib, and not have release your changes. Though, as explained above, <bold> |
---|
| 34 | Altered source versions must be plainly marked as such, and must not be misrepresented |
---|
| 35 | as being the original software </bold> |
---|
| 36 | |
---|
| 37 | This is to allow users the greatest flexibility in what you can use this lib for. |
---|
| 38 | |
---|
| 39 | ====================================================================================== |
---|
| 40 | ================ INFO ================================================================ |
---|
| 41 | ====================================================================================== |
---|
| 42 | |
---|
| 43 | Cross Platform Object Oriented Input Lib System. Meant to be very robust and |
---|
| 44 | compatiable with many systems and operating systems |
---|
| 45 | |
---|
| 46 | Win32/ |
---|
| 47 | Contains Visual Studio .Net Solution Files |
---|
| 48 | Contains CodeBlocks + MinGW + StlPort project files for OIS |
---|
| 49 | |
---|
| 50 | ---- Dependencies ------------------------------------------------------ |
---|
| 51 | DirectInput 8 |
---|
| 52 | Ogre & CEGUI 0.4.0 If building CEGUIOgre OIS Demo |
---|
| 53 | |
---|
| 54 | SDL/ |
---|
| 55 | A test bed for an OIS InputManager with SDL as the backend. Not recommended; |
---|
| 56 | however, useful for platforms with non-native OIS ports for temporary use. |
---|
| 57 | |
---|
| 58 | Linux/ |
---|
| 59 | ---- Dependencies ------------------------------------------------------ |
---|
| 60 | X11 |
---|
| 61 | Ogre (GLX Platform) & CEGUI 0.4.0 If building CEGUIOgre OIS Demo |
---|
| 62 | Newer Linux Kernel (2.6+ ?) for Event API - else, use --disable-joyevents |
---|
| 63 | |
---|
| 64 | Steps to build on Linux: |
---|
| 65 | ./bootstrap |
---|
| 66 | ./configure |
---|
| 67 | ./make && make install |
---|
| 68 | |
---|
| 69 | ---- Configure build options -------------------------------------------- |
---|
| 70 | ./configure --help --- List all configure options |
---|
| 71 | ./configure --disable-ogre --- Disables CEGUIOgre ActionMapping Demo |
---|
| 72 | ./configure --disable-joyevents --- Uses /dev/input/jsX instead of |
---|
| 73 | /dev/input/eventX |
---|
| 74 | |
---|
| 75 | LinuxCB/ |
---|
| 76 | Contains CodeBlock files for building OIS and Demos with codeblocks |
---|
| 77 | This project file looks for Ogre and other dependencies in /usr/local/lib |
---|
| 78 | and /usr/local/include. If installed elsewhere, modify the project |
---|
| 79 | settings. It also installs libOIS to ~/libs |
---|
| 80 | |
---|
| 81 | Mac/ |
---|
| 82 | |
---|
| 83 | XCode-1.5/ |
---|
| 84 | Non-complete native OIS port. |
---|
| 85 | |
---|
| 86 | XCode-2.2/ |
---|
[1197] | 87 | Working, complete, OIS port to OSX using SDL as a backend. |
---|