Mercurial > sdl-ios-xcode
annotate README.PS3 @ 5079:8c88cae7911e SDL-1.2
Michael Bicha to Sam
I came across further issues with SDL 1.2.14 on win32 in combination
with touch screens.
When you touched the screen older SDLs reported
SDL_MOUSEMOTION to the touch position
SDL_MOUSEBUTTONDOWN at the touch position
1.2.14 reports
SDL_MOUSEBUTTONDOWN at the last mouse position before the touch
and then a
SDL_MOUSEMOTION to the touch position
I found that to fix it in the file SDL_sysevents.c i had to put back the
following lines from 1.2.12 to get it working correctly again:
if ( mouse_relative ) {
/* RJR: March 28, 2000
report internal mouse position if in relative mode */
x = 0; y = 0;
} else {
x = (Sint16)LOWORD(lParam);
y = (Sint16)HIWORD(lParam);
#ifdef _WIN32_WCE
if (SDL_VideoSurface)
GapiTransform(this->hidden->userOrientation,
this->hidden->hiresFix, &x, &y);
#endif
}
posted = SDL_PrivateMouseButton(
state, button, x, y);
where there was only
posted = SDL_PrivateMouseButton(
state, button, 0, 0);
in 1.2.14 (appx. line 484)
please feel free to put that change into any SDL lib you like in any way
you like and thanks for your great work !
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 23 Jan 2011 21:02:02 -0800 |
parents | 3b8ac3d311a2 |
children |
rev | line source |
---|---|
4165 | 1 |
2 SDL on Sony Playstation3 | |
3 ------------------------ | |
4 | |
5 Installation: | |
6 First, you have to install the Cell SDK | |
7 - Download the Cell SDK installer RPM and ISO images to | |
8 a temporary directory such as /tmp/cellsdk. | |
9 - Mount the image: mount -o loop CellSDK-Devel-Fedora_3.1.0.0.0.iso /tmp/cellsdk | |
10 - Install the SDK installer: rpm -ivh cell-install-3.1.0-0.0.noarch.rpm | |
11 - Install the SDK: cd /opt/cell && ./cellsdk --iso /tmp/cellsdkiso install | |
12 | |
13 You need to install the SPU-libs before installing SDL | |
14 - Go to SDL-1.2/src/video/ps3/spulibs/ | |
15 - Run make && make install | |
16 | |
17 Finally, install SDL | |
18 - Go to SDL-1.2/ and build SDL like any other GNU style package. | |
19 e.g. | |
20 - Build the configure-script with ./autogen.sh | |
21 - Configure SDL for your needs: ./configure --enable-video-ps3 ... | |
22 - Build and install it: make && make install | |
23 | |
24 | |
25 Todo: | |
26 - mouse/keyboard/controller support | |
27 | |
28 Have fun! | |
29 Dirk Herrendoerfer <d.herrendoerfer [at] de [dot ibm [dot] com> |