Mercurial > touhou
annotate pytouhou/game/sprite.py @ 27:b65d6bc55793
Add rotating sprite support
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Fri, 12 Aug 2011 21:38:28 +0200 |
parents | f17122405121 |
children | f405b947624d |
rev | line source |
---|---|
15 | 1 from struct import unpack |
2 | |
3 from pytouhou.utils.matrix import Matrix | |
4 | |
21
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
5 |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
6 class AnmWrapper(object): |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
7 def __init__(self, anm_files): |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
8 self.anm_files = list(anm_files) |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
9 |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
10 def get_sprite(self, script_index): |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
11 for anm in self.anm_files: |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
12 if script_index in anm.scripts: |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
13 return anm, Sprite(anm, script_index) |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
14 |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
15 |
bf225780973f
Small refactoring, and Rumia \o/
Thibaut Girka <thib@sitedethib.com>
parents:
17
diff
changeset
|
16 |
15 | 17 class Sprite(object): |
18 def __init__(self, anm, script_index): | |
19 self.anm = anm | |
20 self.script_index = script_index | |
21 self.texcoords = (0, 0, 0, 0) # x, y, width, height | |
22 self.mirrored = False | |
23 self.rescale = (1., 1.) | |
24 self.rotations_3d = (0., 0., 0.) | |
27
b65d6bc55793
Add rotating sprite support
Thibaut Girka <thib@sitedethib.com>
parents:
26
diff
changeset
|
25 self.rotations_speed_3d = (0., 0., 0.) |
15 | 26 self.corner_relative_placement = False |
17
d940d004b840
Make game.sprite.Sprite use its own frame counter.
Thibaut Girka <thib@sitedethib.com>
parents:
15
diff
changeset
|
27 self.frame = 0 |
15 | 28 self._uvs = [] |
29 self._vertices = [] | |
30 | |
31 | |
32 def update_uvs_vertices(self, override_width=0, override_height=0): | |
33 vertmat = Matrix() | |
34 vertmat.data[0][0] = -.5 | |
35 vertmat.data[1][0] = -.5 | |
36 | |
37 vertmat.data[0][1] = .5 | |
38 vertmat.data[1][1] = -.5 | |
39 | |
40 vertmat.data[0][2] = .5 | |
41 vertmat.data[1][2] = .5 | |
42 | |
43 vertmat.data[0][3] = -.5 | |
44 vertmat.data[1][3] = .5 | |
45 | |
46 for i in range(4): | |
47 vertmat.data[2][i] = 0. | |
48 vertmat.data[3][i] = 1. | |
49 | |
50 tx, ty, tw, th = self.texcoords | |
51 sx, sy = self.rescale | |
52 width = override_width or (tw * sx) | |
53 height = override_height or (th * sy) | |
54 | |
55 transform = Matrix.get_scaling_matrix(width, height, 1.) | |
56 if self.mirrored: | |
57 transform = Matrix.get_scaling_matrix(-1., 1., 1.).mult(transform) | |
58 if self.rotations_3d != (0., 0., 0.): | |
59 rx, ry, rz = self.rotations_3d | |
60 transform = Matrix.get_rotation_matrix(-rx, 'x').mult(transform) | |
61 transform = Matrix.get_rotation_matrix(ry, 'y').mult(transform) | |
62 transform = Matrix.get_rotation_matrix(-rz, 'z').mult(transform) #TODO: minus, really? | |
63 if self.corner_relative_placement: # Reposition | |
64 transform = Matrix.get_translation_matrix(width / 2., height / 2., 0.).mult(transform) | |
65 vertmat = transform.mult(vertmat) | |
66 | |
67 uvs = [(tx / self.anm.size[0], 1. - (ty / self.anm.size[1])), | |
68 ((tx + tw) / self.anm.size[0], 1. - (ty / self.anm.size[1])), | |
69 ((tx + tw) / self.anm.size[0], 1. - ((ty + th) / self.anm.size[1])), | |
70 (tx / self.anm.size[0], 1. - ((ty + th) / self.anm.size[1]))] | |
71 | |
72 vertices = [] | |
73 for i in xrange(4): | |
74 w = vertmat.data[3][i] | |
75 vertices.append((vertmat.data[0][i] / w, | |
76 vertmat.data[1][i] / w, | |
77 vertmat.data[2][i] / w)) | |
78 | |
79 self._uvs, self._vertices = uvs, vertices | |
80 | |
81 | |
82 | |
17
d940d004b840
Make game.sprite.Sprite use its own frame counter.
Thibaut Girka <thib@sitedethib.com>
parents:
15
diff
changeset
|
83 def update(self, override_width=0, override_height=0): |
15 | 84 properties = {} |
85 for time, instr_type, data in self.anm.scripts[self.script_index]: | |
17
d940d004b840
Make game.sprite.Sprite use its own frame counter.
Thibaut Girka <thib@sitedethib.com>
parents:
15
diff
changeset
|
86 if time == self.frame: |
15 | 87 if instr_type == 15: #Return |
88 break | |
89 else: | |
90 properties[instr_type] = data | |
17
d940d004b840
Make game.sprite.Sprite use its own frame counter.
Thibaut Girka <thib@sitedethib.com>
parents:
15
diff
changeset
|
91 self.frame += 1 |
d940d004b840
Make game.sprite.Sprite use its own frame counter.
Thibaut Girka <thib@sitedethib.com>
parents:
15
diff
changeset
|
92 |
27
b65d6bc55793
Add rotating sprite support
Thibaut Girka <thib@sitedethib.com>
parents:
26
diff
changeset
|
93 self.rotations_3d = tuple(x + y for x, y in zip(self.rotations_3d, self.rotations_speed_3d)) |
b65d6bc55793
Add rotating sprite support
Thibaut Girka <thib@sitedethib.com>
parents:
26
diff
changeset
|
94 |
15 | 95 if properties: |
96 if 1 in properties: | |
97 self.texcoords = self.anm.sprites[unpack('<I', properties[1])[0]] | |
98 del properties[1] | |
99 if 2 in properties: | |
100 self.rescale = unpack('<ff', properties[2]) | |
101 del properties[2] | |
26
f17122405121
Basic sprite animation support
Thibaut Girka <thib@sitedethib.com>
parents:
21
diff
changeset
|
102 if 5 in properties: |
f17122405121
Basic sprite animation support
Thibaut Girka <thib@sitedethib.com>
parents:
21
diff
changeset
|
103 self.frame, = unpack('<I', properties[5]) |
f17122405121
Basic sprite animation support
Thibaut Girka <thib@sitedethib.com>
parents:
21
diff
changeset
|
104 del properties[5] |
15 | 105 if 7 in properties: |
106 self.mirrored = True #TODO | |
107 del properties[7] | |
108 if 9 in properties: | |
109 self.rotations_3d = unpack('<fff', properties[9]) | |
110 del properties[9] | |
27
b65d6bc55793
Add rotating sprite support
Thibaut Girka <thib@sitedethib.com>
parents:
26
diff
changeset
|
111 if 10 in properties: |
b65d6bc55793
Add rotating sprite support
Thibaut Girka <thib@sitedethib.com>
parents:
26
diff
changeset
|
112 self.rotations_speed_3d = unpack('<fff', properties[10]) |
b65d6bc55793
Add rotating sprite support
Thibaut Girka <thib@sitedethib.com>
parents:
26
diff
changeset
|
113 del properties[10] |
15 | 114 if 23 in properties: |
115 self.corner_relative_placement = True #TODO | |
116 del properties[23] | |
117 if properties: | |
118 print('Leftover properties: %r' % properties) #TODO | |
119 self.update_uvs_vertices(override_width, override_height) | |
120 return True | |
27
b65d6bc55793
Add rotating sprite support
Thibaut Girka <thib@sitedethib.com>
parents:
26
diff
changeset
|
121 if self.rotations_speed_3d != (0., 0., 0.): |
b65d6bc55793
Add rotating sprite support
Thibaut Girka <thib@sitedethib.com>
parents:
26
diff
changeset
|
122 self.update_uvs_vertices(override_width, override_height) |
b65d6bc55793
Add rotating sprite support
Thibaut Girka <thib@sitedethib.com>
parents:
26
diff
changeset
|
123 return True |
15 | 124 return False |
125 |