Mercurial > sdl-ios-xcode
annotate README.MacOS @ 3978:b966761fef6c SDL-1.2
Significantly improved XIM support.
Fixes Bugzilla #429.
Selected notes from the patch's README:
= FIXES =
This patch fixes the above issues as follows.
== X11 events ==
Moved XFilterEvent just after XNextEvent so that all events are passed
to it. Also, XFilterEvent will receive masks indicated by IM through
XNFilterEvents IC value as well as masks surpplied by SDL.
X11_KeyRepeat is called between XNextEvent and XFilterEvent, after
testing an event is a KeyRelease. I'm not 100% comfortable to do so,
but I couldn't find a better timing to call it, and use of the
function is inevitable.
== Xutf8LookupString ==
Used a longer buffer to receive UTF-8 string. If it is insufficient,
a dynamic storage of the requested size will be allocated. The
initial size of the buffer is set to 32, because the Japanese text
converted from the most widely used benchmark key sequence for
Japanese IM, "WATASHINONAMAEHANAKANODESU." has ten Japanese characters
in it, that occupies 30 bytes when encoded in UTF-8.
== SDL_keysym.unicode ==
On Windows version of SDL implementation, SDL_keysym.unicode stores
UTF-16 encoded unicode characters, one UTF-16 encoding unit per an SDL
event. A Unicode supplementary characters are sent to an application
as two events. (One with a high surrogate and another with a low
surrogate.) The behavior seems reasonable since it is upward
compatible with existing handling of BMP characters.
I wrote a UTF-8 to UTF-16 conversion function for the purpose. It is
designed with the execution speed in mind, having a minimum set of
features that my patch requires.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 25 Jun 2007 19:58:32 +0000 |
parents | 37e3ca9254c7 |
children |
rev | line source |
---|---|
0 | 1 |
2 ============================================================================== | |
3 Using the Simple DirectMedia Layer with MacOS 7,8,9 on PPC | |
4 ============================================================================== | |
5 | |
6 These instructions are for people using the Apple MPW environment: | |
7 http://developer.apple.com/tools/mpw-tools/ | |
8 | |
9 CodeWarrior projects are available in the CWprojects directory. | |
10 | |
11 ============================================================================== | |
12 I. Building the Simple DirectMedia Layer libraries: | |
13 (This step isn't necessary if you have the SDL binary distribution) | |
14 | |
15 First, unpack the MPWmake.sea.hqx archive and move SDL.make into the | |
16 SDL directory. | |
17 | |
18 Start MPW | |
19 | |
20 Set the current directory within MPW to the SDL toplevel directory. | |
21 | |
22 Build "SDL" (Type Command-B and enter "SDL" in the dialog) | |
23 | |
24 If everything compiles successfully, you now have the PPC libraries | |
25 "SDL" and "SDLmain.o" in the 'lib' subdirectory. | |
26 | |
27 ============================================================================== | |
28 II. Building the Simple DirectMedia Layer test programs: | |
29 | |
30 First, unpack the MPWmake.sea.hqx archive, move the new rsrc directory to | |
31 the main SDL directory, and move the makefiles in the new test subdirectory | |
32 to the SDL 'test' subdirectory. | |
33 | |
34 Start MPW | |
35 | |
36 Set the current directory within MPW to the SDL 'test' subdirectory. | |
37 | |
38 Build the programs that have an associated MPW makefile (file ending | |
39 with .make), including "testwin", "testalpha", and "graywin". | |
40 | |
41 Copy the SDL library file into the test directory, and run! | |
42 | |
43 ============================================================================== | |
44 III. Building the Simple DirectMedia Layer demo programs: | |
45 | |
46 Copy one of the test program Makefiles to the demo directory | |
47 and modify it to match the sources in the demo. | |
48 | |
49 ============================================================================== | |
50 IV. Enjoy! :) | |
51 | |
52 If you have a project you'd like me to know about, or want to ask questions, | |
53 go ahead and join the SDL developer's mailing list by sending e-mail to: | |
54 | |
172
37e3ca9254c7
Date: Sat, 8 Sep 2001 04:42:23 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
55 sdl-request@libsdl.org |
0 | 56 |
172
37e3ca9254c7
Date: Sat, 8 Sep 2001 04:42:23 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
57 and put "subscribe" into the subject of the message. Or alternatively you |
37e3ca9254c7
Date: Sat, 8 Sep 2001 04:42:23 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
58 can use the web interface: |
37e3ca9254c7
Date: Sat, 8 Sep 2001 04:42:23 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
59 |
37e3ca9254c7
Date: Sat, 8 Sep 2001 04:42:23 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
60 http://www.libsdl.org/mailman/listinfo/sdl |
0 | 61 |
62 ============================================================================== | |
63 |