blob: 8163ea0aa1fcbd9d7252aa88912acab7cebfe682 [file] [log] [blame]
Jeff Brown5541de92011-04-11 11:54:25 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "Sprites"
18
19//#define LOG_NDEBUG 0
20
21#include "SpriteController.h"
22
23#include <cutils/log.h>
24#include <utils/String8.h>
25
26#include <SkBitmap.h>
27#include <SkCanvas.h>
28#include <SkColor.h>
29#include <SkPaint.h>
30#include <SkXfermode.h>
31
32namespace android {
33
34// --- SpriteController ---
35
36SpriteController::SpriteController(const sp<Looper>& looper, int32_t overlayLayer) :
37 mLooper(looper), mOverlayLayer(overlayLayer) {
38 mHandler = new WeakMessageHandler(this);
Jeff Brown2352b972011-04-12 22:39:53 -070039
40 mLocked.transactionNestingCount = 0;
41 mLocked.deferredSpriteUpdate = false;
Jeff Brown5541de92011-04-11 11:54:25 -070042}
43
44SpriteController::~SpriteController() {
45 mLooper->removeMessages(mHandler);
46
47 if (mSurfaceComposerClient != NULL) {
48 mSurfaceComposerClient->dispose();
49 mSurfaceComposerClient.clear();
50 }
51}
52
53sp<Sprite> SpriteController::createSprite() {
54 return new SpriteImpl(this);
55}
56
Jeff Brown2352b972011-04-12 22:39:53 -070057void SpriteController::openTransaction() {
58 AutoMutex _l(mLock);
59
60 mLocked.transactionNestingCount += 1;
61}
62
63void SpriteController::closeTransaction() {
64 AutoMutex _l(mLock);
65
66 LOG_ALWAYS_FATAL_IF(mLocked.transactionNestingCount == 0,
67 "Sprite closeTransaction() called but there is no open sprite transaction");
68
69 mLocked.transactionNestingCount -= 1;
70 if (mLocked.transactionNestingCount == 0 && mLocked.deferredSpriteUpdate) {
71 mLocked.deferredSpriteUpdate = false;
Jeff Brown5541de92011-04-11 11:54:25 -070072 mLooper->sendMessage(mHandler, Message(MSG_UPDATE_SPRITES));
73 }
74}
75
Jeff Brown2352b972011-04-12 22:39:53 -070076void SpriteController::invalidateSpriteLocked(const sp<SpriteImpl>& sprite) {
77 bool wasEmpty = mLocked.invalidatedSprites.isEmpty();
78 mLocked.invalidatedSprites.push(sprite);
79 if (wasEmpty) {
80 if (mLocked.transactionNestingCount != 0) {
81 mLocked.deferredSpriteUpdate = true;
82 } else {
83 mLooper->sendMessage(mHandler, Message(MSG_UPDATE_SPRITES));
84 }
85 }
86}
87
Jeff Brown5541de92011-04-11 11:54:25 -070088void SpriteController::disposeSurfaceLocked(const sp<SurfaceControl>& surfaceControl) {
Jeff Brown2352b972011-04-12 22:39:53 -070089 bool wasEmpty = mLocked.disposedSurfaces.isEmpty();
90 mLocked.disposedSurfaces.push(surfaceControl);
Jeff Brown5541de92011-04-11 11:54:25 -070091 if (wasEmpty) {
92 mLooper->sendMessage(mHandler, Message(MSG_DISPOSE_SURFACES));
93 }
94}
95
96void SpriteController::handleMessage(const Message& message) {
97 switch (message.what) {
98 case MSG_UPDATE_SPRITES:
99 doUpdateSprites();
100 break;
101 case MSG_DISPOSE_SURFACES:
102 doDisposeSurfaces();
103 break;
104 }
105}
106
107void SpriteController::doUpdateSprites() {
108 // Collect information about sprite updates.
109 // Each sprite update record includes a reference to its associated sprite so we can
110 // be certain the sprites will not be deleted while this function runs. Sprites
111 // may invalidate themselves again during this time but we will handle those changes
112 // in the next iteration.
113 Vector<SpriteUpdate> updates;
114 size_t numSprites;
115 { // acquire lock
116 AutoMutex _l(mLock);
117
Jeff Brown2352b972011-04-12 22:39:53 -0700118 numSprites = mLocked.invalidatedSprites.size();
Jeff Brown5541de92011-04-11 11:54:25 -0700119 for (size_t i = 0; i < numSprites; i++) {
Jeff Brown2352b972011-04-12 22:39:53 -0700120 const sp<SpriteImpl>& sprite = mLocked.invalidatedSprites.itemAt(i);
Jeff Brown5541de92011-04-11 11:54:25 -0700121
122 updates.push(SpriteUpdate(sprite, sprite->getStateLocked()));
123 sprite->resetDirtyLocked();
124 }
Jeff Brown2352b972011-04-12 22:39:53 -0700125 mLocked.invalidatedSprites.clear();
Jeff Brown5541de92011-04-11 11:54:25 -0700126 } // release lock
127
128 // Create missing surfaces.
129 bool surfaceChanged = false;
130 for (size_t i = 0; i < numSprites; i++) {
131 SpriteUpdate& update = updates.editItemAt(i);
132
133 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) {
Jeff Brown2352b972011-04-12 22:39:53 -0700134 update.state.surfaceWidth = update.state.icon.bitmap.width();
135 update.state.surfaceHeight = update.state.icon.bitmap.height();
Jeff Brown5541de92011-04-11 11:54:25 -0700136 update.state.surfaceDrawn = false;
137 update.state.surfaceVisible = false;
138 update.state.surfaceControl = obtainSurface(
139 update.state.surfaceWidth, update.state.surfaceHeight);
140 if (update.state.surfaceControl != NULL) {
141 update.surfaceChanged = surfaceChanged = true;
142 }
143 }
144 }
145
146 // Resize sprites if needed, inside a global transaction.
147 bool haveGlobalTransaction = false;
148 for (size_t i = 0; i < numSprites; i++) {
149 SpriteUpdate& update = updates.editItemAt(i);
150
151 if (update.state.surfaceControl != NULL && update.state.wantSurfaceVisible()) {
Jeff Brown2352b972011-04-12 22:39:53 -0700152 int32_t desiredWidth = update.state.icon.bitmap.width();
153 int32_t desiredHeight = update.state.icon.bitmap.height();
Jeff Brown5541de92011-04-11 11:54:25 -0700154 if (update.state.surfaceWidth < desiredWidth
155 || update.state.surfaceHeight < desiredHeight) {
156 if (!haveGlobalTransaction) {
157 SurfaceComposerClient::openGlobalTransaction();
158 haveGlobalTransaction = true;
159 }
160
161 status_t status = update.state.surfaceControl->setSize(desiredWidth, desiredHeight);
162 if (status) {
Steve Block3762c312012-01-06 19:20:56 +0000163 ALOGE("Error %d resizing sprite surface from %dx%d to %dx%d",
Jeff Brown5541de92011-04-11 11:54:25 -0700164 status, update.state.surfaceWidth, update.state.surfaceHeight,
165 desiredWidth, desiredHeight);
166 } else {
167 update.state.surfaceWidth = desiredWidth;
168 update.state.surfaceHeight = desiredHeight;
169 update.state.surfaceDrawn = false;
170 update.surfaceChanged = surfaceChanged = true;
171
172 if (update.state.surfaceVisible) {
173 status = update.state.surfaceControl->hide();
174 if (status) {
Steve Block3762c312012-01-06 19:20:56 +0000175 ALOGE("Error %d hiding sprite surface after resize.", status);
Jeff Brown5541de92011-04-11 11:54:25 -0700176 } else {
177 update.state.surfaceVisible = false;
178 }
179 }
180 }
181 }
182 }
183 }
184 if (haveGlobalTransaction) {
185 SurfaceComposerClient::closeGlobalTransaction();
186 }
187
188 // Redraw sprites if needed.
189 for (size_t i = 0; i < numSprites; i++) {
190 SpriteUpdate& update = updates.editItemAt(i);
191
192 if ((update.state.dirty & DIRTY_BITMAP) && update.state.surfaceDrawn) {
193 update.state.surfaceDrawn = false;
194 update.surfaceChanged = surfaceChanged = true;
195 }
196
197 if (update.state.surfaceControl != NULL && !update.state.surfaceDrawn
198 && update.state.wantSurfaceVisible()) {
199 sp<Surface> surface = update.state.surfaceControl->getSurface();
200 Surface::SurfaceInfo surfaceInfo;
201 status_t status = surface->lock(&surfaceInfo);
202 if (status) {
Steve Block3762c312012-01-06 19:20:56 +0000203 ALOGE("Error %d locking sprite surface before drawing.", status);
Jeff Brown5541de92011-04-11 11:54:25 -0700204 } else {
205 SkBitmap surfaceBitmap;
206 ssize_t bpr = surfaceInfo.s * bytesPerPixel(surfaceInfo.format);
207 surfaceBitmap.setConfig(SkBitmap::kARGB_8888_Config,
208 surfaceInfo.w, surfaceInfo.h, bpr);
209 surfaceBitmap.setPixels(surfaceInfo.bits);
210
Derek Sollenbergerfc615a02012-12-20 14:39:57 -0500211 SkCanvas surfaceCanvas(surfaceBitmap);
Jeff Brown5541de92011-04-11 11:54:25 -0700212
213 SkPaint paint;
214 paint.setXfermodeMode(SkXfermode::kSrc_Mode);
Jeff Brown2352b972011-04-12 22:39:53 -0700215 surfaceCanvas.drawBitmap(update.state.icon.bitmap, 0, 0, &paint);
Jeff Brown5541de92011-04-11 11:54:25 -0700216
Jeff Brown2352b972011-04-12 22:39:53 -0700217 if (surfaceInfo.w > uint32_t(update.state.icon.bitmap.width())) {
Jeff Brown5541de92011-04-11 11:54:25 -0700218 paint.setColor(0); // transparent fill color
Jeff Brown2352b972011-04-12 22:39:53 -0700219 surfaceCanvas.drawRectCoords(update.state.icon.bitmap.width(), 0,
220 surfaceInfo.w, update.state.icon.bitmap.height(), paint);
Jeff Brown5541de92011-04-11 11:54:25 -0700221 }
Jeff Brown2352b972011-04-12 22:39:53 -0700222 if (surfaceInfo.h > uint32_t(update.state.icon.bitmap.height())) {
Jeff Brown5541de92011-04-11 11:54:25 -0700223 paint.setColor(0); // transparent fill color
Jeff Brown2352b972011-04-12 22:39:53 -0700224 surfaceCanvas.drawRectCoords(0, update.state.icon.bitmap.height(),
Jeff Brown5541de92011-04-11 11:54:25 -0700225 surfaceInfo.w, surfaceInfo.h, paint);
226 }
227
228 status = surface->unlockAndPost();
229 if (status) {
Steve Block3762c312012-01-06 19:20:56 +0000230 ALOGE("Error %d unlocking and posting sprite surface after drawing.", status);
Jeff Brown5541de92011-04-11 11:54:25 -0700231 } else {
232 update.state.surfaceDrawn = true;
233 update.surfaceChanged = surfaceChanged = true;
234 }
235 }
236 }
237 }
238
239 // Set sprite surface properties and make them visible.
240 bool haveTransaction = false;
241 for (size_t i = 0; i < numSprites; i++) {
242 SpriteUpdate& update = updates.editItemAt(i);
243
244 bool wantSurfaceVisibleAndDrawn = update.state.wantSurfaceVisible()
245 && update.state.surfaceDrawn;
246 bool becomingVisible = wantSurfaceVisibleAndDrawn && !update.state.surfaceVisible;
247 bool becomingHidden = !wantSurfaceVisibleAndDrawn && update.state.surfaceVisible;
248 if (update.state.surfaceControl != NULL && (becomingVisible || becomingHidden
249 || (wantSurfaceVisibleAndDrawn && (update.state.dirty & (DIRTY_ALPHA
250 | DIRTY_POSITION | DIRTY_TRANSFORMATION_MATRIX | DIRTY_LAYER
251 | DIRTY_VISIBILITY | DIRTY_HOTSPOT))))) {
252 status_t status;
253 if (!haveTransaction) {
Mathias Agopian439863f2011-06-28 19:09:31 -0700254 SurfaceComposerClient::openGlobalTransaction();
Jeff Brown5541de92011-04-11 11:54:25 -0700255 haveTransaction = true;
256 }
257
258 if (wantSurfaceVisibleAndDrawn
259 && (becomingVisible || (update.state.dirty & DIRTY_ALPHA))) {
260 status = update.state.surfaceControl->setAlpha(update.state.alpha);
261 if (status) {
Steve Block3762c312012-01-06 19:20:56 +0000262 ALOGE("Error %d setting sprite surface alpha.", status);
Jeff Brown5541de92011-04-11 11:54:25 -0700263 }
264 }
265
266 if (wantSurfaceVisibleAndDrawn
267 && (becomingVisible || (update.state.dirty & (DIRTY_POSITION
268 | DIRTY_HOTSPOT)))) {
269 status = update.state.surfaceControl->setPosition(
Jeff Brown2352b972011-04-12 22:39:53 -0700270 update.state.positionX - update.state.icon.hotSpotX,
271 update.state.positionY - update.state.icon.hotSpotY);
Jeff Brown5541de92011-04-11 11:54:25 -0700272 if (status) {
Steve Block3762c312012-01-06 19:20:56 +0000273 ALOGE("Error %d setting sprite surface position.", status);
Jeff Brown5541de92011-04-11 11:54:25 -0700274 }
275 }
276
277 if (wantSurfaceVisibleAndDrawn
278 && (becomingVisible
279 || (update.state.dirty & DIRTY_TRANSFORMATION_MATRIX))) {
280 status = update.state.surfaceControl->setMatrix(
281 update.state.transformationMatrix.dsdx,
282 update.state.transformationMatrix.dtdx,
283 update.state.transformationMatrix.dsdy,
284 update.state.transformationMatrix.dtdy);
285 if (status) {
Steve Block3762c312012-01-06 19:20:56 +0000286 ALOGE("Error %d setting sprite surface transformation matrix.", status);
Jeff Brown5541de92011-04-11 11:54:25 -0700287 }
288 }
289
290 int32_t surfaceLayer = mOverlayLayer + update.state.layer;
291 if (wantSurfaceVisibleAndDrawn
292 && (becomingVisible || (update.state.dirty & DIRTY_LAYER))) {
293 status = update.state.surfaceControl->setLayer(surfaceLayer);
294 if (status) {
Steve Block3762c312012-01-06 19:20:56 +0000295 ALOGE("Error %d setting sprite surface layer.", status);
Jeff Brown5541de92011-04-11 11:54:25 -0700296 }
297 }
298
299 if (becomingVisible) {
Jeff Brown4fd42e52012-08-26 22:49:01 -0700300 status = update.state.surfaceControl->show();
Jeff Brown5541de92011-04-11 11:54:25 -0700301 if (status) {
Steve Block3762c312012-01-06 19:20:56 +0000302 ALOGE("Error %d showing sprite surface.", status);
Jeff Brown5541de92011-04-11 11:54:25 -0700303 } else {
304 update.state.surfaceVisible = true;
305 update.surfaceChanged = surfaceChanged = true;
306 }
307 } else if (becomingHidden) {
308 status = update.state.surfaceControl->hide();
309 if (status) {
Steve Block3762c312012-01-06 19:20:56 +0000310 ALOGE("Error %d hiding sprite surface.", status);
Jeff Brown5541de92011-04-11 11:54:25 -0700311 } else {
312 update.state.surfaceVisible = false;
313 update.surfaceChanged = surfaceChanged = true;
314 }
315 }
316 }
317 }
318
319 if (haveTransaction) {
Mathias Agopian439863f2011-06-28 19:09:31 -0700320 SurfaceComposerClient::closeGlobalTransaction();
Jeff Brown5541de92011-04-11 11:54:25 -0700321 }
322
323 // If any surfaces were changed, write back the new surface properties to the sprites.
324 if (surfaceChanged) { // acquire lock
325 AutoMutex _l(mLock);
326
327 for (size_t i = 0; i < numSprites; i++) {
328 const SpriteUpdate& update = updates.itemAt(i);
329
330 if (update.surfaceChanged) {
331 update.sprite->setSurfaceLocked(update.state.surfaceControl,
332 update.state.surfaceWidth, update.state.surfaceHeight,
333 update.state.surfaceDrawn, update.state.surfaceVisible);
334 }
335 }
336 } // release lock
337
338 // Clear the sprite update vector outside the lock. It is very important that
339 // we do not clear sprite references inside the lock since we could be releasing
340 // the last remaining reference to the sprite here which would result in the
341 // sprite being deleted and the lock being reacquired by the sprite destructor
342 // while already held.
343 updates.clear();
344}
345
346void SpriteController::doDisposeSurfaces() {
347 // Collect disposed surfaces.
348 Vector<sp<SurfaceControl> > disposedSurfaces;
349 { // acquire lock
Jeff Brown2352b972011-04-12 22:39:53 -0700350 AutoMutex _l(mLock);
351
352 disposedSurfaces = mLocked.disposedSurfaces;
353 mLocked.disposedSurfaces.clear();
Jeff Brown5541de92011-04-11 11:54:25 -0700354 } // release lock
355
356 // Release the last reference to each surface outside of the lock.
357 // We don't want the surfaces to be deleted while we are holding our lock.
358 disposedSurfaces.clear();
359}
360
361void SpriteController::ensureSurfaceComposerClient() {
362 if (mSurfaceComposerClient == NULL) {
363 mSurfaceComposerClient = new SurfaceComposerClient();
364 }
365}
366
367sp<SurfaceControl> SpriteController::obtainSurface(int32_t width, int32_t height) {
368 ensureSurfaceComposerClient();
369
370 sp<SurfaceControl> surfaceControl = mSurfaceComposerClient->createSurface(
Jeff Brown64a55af2012-08-26 02:47:39 -0700371 String8("Sprite"), width, height, PIXEL_FORMAT_RGBA_8888,
372 ISurfaceComposerClient::eHidden);
Jeff Brown2352b972011-04-12 22:39:53 -0700373 if (surfaceControl == NULL || !surfaceControl->isValid()
374 || !surfaceControl->getSurface()->isValid()) {
Steve Block3762c312012-01-06 19:20:56 +0000375 ALOGE("Error creating sprite surface.");
Jeff Brown5541de92011-04-11 11:54:25 -0700376 return NULL;
377 }
378 return surfaceControl;
379}
380
381
382// --- SpriteController::SpriteImpl ---
383
384SpriteController::SpriteImpl::SpriteImpl(const sp<SpriteController> controller) :
Jeff Brown2352b972011-04-12 22:39:53 -0700385 mController(controller) {
Jeff Brown5541de92011-04-11 11:54:25 -0700386}
387
388SpriteController::SpriteImpl::~SpriteImpl() {
389 AutoMutex _m(mController->mLock);
390
391 // Let the controller take care of deleting the last reference to sprite
392 // surfaces so that we do not block the caller on an IPC here.
Jeff Brown2352b972011-04-12 22:39:53 -0700393 if (mLocked.state.surfaceControl != NULL) {
394 mController->disposeSurfaceLocked(mLocked.state.surfaceControl);
395 mLocked.state.surfaceControl.clear();
Jeff Brown5541de92011-04-11 11:54:25 -0700396 }
397}
398
Jeff Brown2352b972011-04-12 22:39:53 -0700399void SpriteController::SpriteImpl::setIcon(const SpriteIcon& icon) {
Jeff Brown5541de92011-04-11 11:54:25 -0700400 AutoMutex _l(mController->mLock);
401
Jeff Brown2352b972011-04-12 22:39:53 -0700402 uint32_t dirty;
403 if (icon.isValid()) {
404 icon.bitmap.copyTo(&mLocked.state.icon.bitmap, SkBitmap::kARGB_8888_Config);
Jeff Brown5541de92011-04-11 11:54:25 -0700405
Jeff Brown2352b972011-04-12 22:39:53 -0700406 if (!mLocked.state.icon.isValid()
407 || mLocked.state.icon.hotSpotX != icon.hotSpotX
408 || mLocked.state.icon.hotSpotY != icon.hotSpotY) {
409 mLocked.state.icon.hotSpotX = icon.hotSpotX;
410 mLocked.state.icon.hotSpotY = icon.hotSpotY;
411 dirty = DIRTY_BITMAP | DIRTY_HOTSPOT;
412 } else {
413 dirty = DIRTY_BITMAP;
414 }
415 } else if (mLocked.state.icon.isValid()) {
416 mLocked.state.icon.bitmap.reset();
417 dirty = DIRTY_BITMAP | DIRTY_HOTSPOT;
418 } else {
419 return; // setting to invalid icon and already invalid so nothing to do
Jeff Brown5541de92011-04-11 11:54:25 -0700420 }
421
422 invalidateLocked(dirty);
423}
424
425void SpriteController::SpriteImpl::setVisible(bool visible) {
426 AutoMutex _l(mController->mLock);
427
Jeff Brown2352b972011-04-12 22:39:53 -0700428 if (mLocked.state.visible != visible) {
429 mLocked.state.visible = visible;
Jeff Brown5541de92011-04-11 11:54:25 -0700430 invalidateLocked(DIRTY_VISIBILITY);
431 }
432}
433
434void SpriteController::SpriteImpl::setPosition(float x, float y) {
435 AutoMutex _l(mController->mLock);
436
Jeff Brown2352b972011-04-12 22:39:53 -0700437 if (mLocked.state.positionX != x || mLocked.state.positionY != y) {
438 mLocked.state.positionX = x;
439 mLocked.state.positionY = y;
Jeff Brown5541de92011-04-11 11:54:25 -0700440 invalidateLocked(DIRTY_POSITION);
441 }
442}
443
444void SpriteController::SpriteImpl::setLayer(int32_t layer) {
445 AutoMutex _l(mController->mLock);
446
Jeff Brown2352b972011-04-12 22:39:53 -0700447 if (mLocked.state.layer != layer) {
448 mLocked.state.layer = layer;
Jeff Brown5541de92011-04-11 11:54:25 -0700449 invalidateLocked(DIRTY_LAYER);
450 }
451}
452
453void SpriteController::SpriteImpl::setAlpha(float alpha) {
454 AutoMutex _l(mController->mLock);
455
Jeff Brown2352b972011-04-12 22:39:53 -0700456 if (mLocked.state.alpha != alpha) {
457 mLocked.state.alpha = alpha;
Jeff Brown5541de92011-04-11 11:54:25 -0700458 invalidateLocked(DIRTY_ALPHA);
459 }
460}
461
462void SpriteController::SpriteImpl::setTransformationMatrix(
463 const SpriteTransformationMatrix& matrix) {
464 AutoMutex _l(mController->mLock);
465
Jeff Brown2352b972011-04-12 22:39:53 -0700466 if (mLocked.state.transformationMatrix != matrix) {
467 mLocked.state.transformationMatrix = matrix;
Jeff Brown5541de92011-04-11 11:54:25 -0700468 invalidateLocked(DIRTY_TRANSFORMATION_MATRIX);
469 }
470}
471
Jeff Brown5541de92011-04-11 11:54:25 -0700472void SpriteController::SpriteImpl::invalidateLocked(uint32_t dirty) {
Jeff Brown2352b972011-04-12 22:39:53 -0700473 bool wasDirty = mLocked.state.dirty;
474 mLocked.state.dirty |= dirty;
475
476 if (!wasDirty) {
477 mController->invalidateSpriteLocked(this);
Jeff Brown5541de92011-04-11 11:54:25 -0700478 }
479}
480
481} // namespace android