blob: 0c515a41689df65074b478fbe9db974456fde398 [file] [log] [blame]
Romain Guy08ae3172010-06-21 19:35:50 -07001/*
2 * Copyright (C) 2010 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
Chris Craik91eff222016-02-22 13:39:33 -080017#pragma once
Romain Guy71e36aa2011-10-12 14:11:32 -070018
Romain Guy9d5316e2010-06-24 19:30:36 -070019#include "Rect.h"
20
John Reck1bcacfd2017-11-03 10:12:19 -070021#include <SkMatrix.h>
Chris Craik91eff222016-02-22 13:39:33 -080022#include <cutils/compiler.h>
23#include <iomanip>
24#include <ostream>
Chris Craik91eff222016-02-22 13:39:33 -080025
Romain Guy08ae3172010-06-21 19:35:50 -070026namespace android {
Romain Guy9d5316e2010-06-24 19:30:36 -070027namespace uirenderer {
Romain Guy08ae3172010-06-21 19:35:50 -070028
Chris Craik629f6772014-02-05 13:00:24 -080029#define SK_MATRIX_STRING "[%.2f %.2f %.2f] [%.2f %.2f %.2f] [%.2f %.2f %.2f]"
John Reck0aff62d2018-11-26 16:41:34 -080030#define SK_MATRIX_STRING_V "[%.9f %.9f %.9f] [%.9f %.9f %.9f] [%.9f %.9f %.9f]"
John Reck1bcacfd2017-11-03 10:12:19 -070031#define SK_MATRIX_ARGS(m) \
32 (m)->get(0), (m)->get(1), (m)->get(2), (m)->get(3), (m)->get(4), (m)->get(5), (m)->get(6), \
33 (m)->get(7), (m)->get(8)
Chris Craik28ce94a2013-05-31 11:38:03 -070034
John Reck1bcacfd2017-11-03 10:12:19 -070035#define MATRIX_4_STRING \
36 "[%.2f %.2f %.2f %.2f] [%.2f %.2f %.2f %.2f]" \
Chris Craik629f6772014-02-05 13:00:24 -080037 " [%.2f %.2f %.2f %.2f] [%.2f %.2f %.2f %.2f]"
John Reck1bcacfd2017-11-03 10:12:19 -070038#define MATRIX_4_ARGS(m) \
39 (m)->data[0], (m)->data[4], (m)->data[8], (m)->data[12], (m)->data[1], (m)->data[5], \
40 (m)->data[9], (m)->data[13], (m)->data[2], (m)->data[6], (m)->data[10], (m)->data[14], \
41 (m)->data[3], (m)->data[7], (m)->data[11], (m)->data[15]
Chris Craik629f6772014-02-05 13:00:24 -080042
Romain Guy08ae3172010-06-21 19:35:50 -070043///////////////////////////////////////////////////////////////////////////////
44// Classes
45///////////////////////////////////////////////////////////////////////////////
46
Romain Guy71e36aa2011-10-12 14:11:32 -070047class ANDROID_API Matrix4 {
Romain Guy08ae3172010-06-21 19:35:50 -070048public:
Romain Guy7ae7ac42010-06-25 13:46:18 -070049 float data[16];
Romain Guyc7d53492010-06-25 13:41:57 -070050
Romain Guyaf28b512010-08-12 14:34:44 -070051 enum Entry {
52 kScaleX = 0,
53 kSkewY = 1,
54 kPerspective0 = 3,
55 kSkewX = 4,
56 kScaleY = 5,
57 kPerspective1 = 7,
58 kScaleZ = 10,
59 kTranslateX = 12,
60 kTranslateY = 13,
61 kTranslateZ = 14,
62 kPerspective2 = 15
63 };
64
Romain Guy8ce00302013-01-15 18:51:42 -080065 // NOTE: The flags from kTypeIdentity to kTypePerspective
66 // must be kept in sync with the type flags found
67 // in SkMatrix
68 enum Type {
69 kTypeIdentity = 0,
70 kTypeTranslate = 0x1,
71 kTypeScale = 0x2,
72 kTypeAffine = 0x4,
73 kTypePerspective = 0x8,
74 kTypeRectToRect = 0x10,
Chris Craik996fe652013-09-20 17:13:18 -070075 kTypeUnknown = 0x20,
Romain Guy8ce00302013-01-15 18:51:42 -080076 };
77
78 static const int sGeometryMask = 0xf;
79
John Reck1bcacfd2017-11-03 10:12:19 -070080 Matrix4() { loadIdentity(); }
Romain Guy08ae3172010-06-21 19:35:50 -070081
John Reck1bcacfd2017-11-03 10:12:19 -070082 explicit Matrix4(const float* v) { load(v); }
Romain Guy08ae3172010-06-21 19:35:50 -070083
Chih-Hung Hsiehf21b0b62018-12-20 13:48:02 -080084 Matrix4(const SkMatrix& v) { // NOLINT(google-explicit-constructor)
Romain Guy7ae7ac42010-06-25 13:46:18 -070085 load(v);
86 }
Romain Guyf6a11b82010-06-23 17:47:49 -070087
John Reck1bcacfd2017-11-03 10:12:19 -070088 float operator[](int index) const { return data[index]; }
Romain Guy3b753822013-03-05 10:27:35 -080089
90 float& operator[](int index) {
91 mType = kTypeUnknown;
92 return data[index];
93 }
94
95 Matrix4& operator=(const SkMatrix& v) {
96 load(v);
97 return *this;
98 }
99
Romain Guybd3055f2013-03-13 16:14:47 -0700100 friend bool operator==(const Matrix4& a, const Matrix4& b) {
101 return !memcmp(&a.data[0], &b.data[0], 16 * sizeof(float));
102 }
103
John Reck1bcacfd2017-11-03 10:12:19 -0700104 friend bool operator!=(const Matrix4& a, const Matrix4& b) { return !(a == b); }
Romain Guybd3055f2013-03-13 16:14:47 -0700105
Romain Guy7ae7ac42010-06-25 13:46:18 -0700106 void loadIdentity();
Romain Guy08ae3172010-06-21 19:35:50 -0700107
Romain Guy7ae7ac42010-06-25 13:46:18 -0700108 void load(const float* v);
Romain Guy7ae7ac42010-06-25 13:46:18 -0700109 void load(const SkMatrix& v);
Romain Guy08ae3172010-06-21 19:35:50 -0700110
Romain Guy079ba2c2010-07-16 14:12:24 -0700111 void loadInverse(const Matrix4& v);
112
Romain Guy7ae7ac42010-06-25 13:46:18 -0700113 void loadTranslate(float x, float y, float z);
114 void loadScale(float sx, float sy, float sz);
Romain Guy807daf72011-01-18 11:19:19 -0800115 void loadSkew(float sx, float sy);
Romain Guy8ce00302013-01-15 18:51:42 -0800116 void loadRotate(float angle);
Romain Guy7ae7ac42010-06-25 13:46:18 -0700117 void loadRotate(float angle, float x, float y, float z);
118 void loadMultiply(const Matrix4& u, const Matrix4& v);
Romain Guy08ae3172010-06-21 19:35:50 -0700119
Romain Guy7ae7ac42010-06-25 13:46:18 -0700120 void loadOrtho(float left, float right, float bottom, float top, float near, float far);
John Reck1bcacfd2017-11-03 10:12:19 -0700121 void loadOrtho(int width, int height) { loadOrtho(0, width, height, 0, -1, 1); }
Romain Guy08ae3172010-06-21 19:35:50 -0700122
Romain Guyf6bed4f2013-06-20 17:52:07 -0700123 uint8_t getType() const;
Romain Guy8ce00302013-01-15 18:51:42 -0800124
Chris Craikfca52b752015-04-28 11:45:59 -0700125 void multiplyInverse(const Matrix4& v) {
126 Matrix4 inv;
127 inv.loadInverse(v);
128 multiply(inv);
129 }
130
Romain Guy7ae7ac42010-06-25 13:46:18 -0700131 void multiply(const Matrix4& v) {
Chris Craikd2dfd8f2015-12-16 14:27:20 -0800132 if (!v.isIdentity()) {
133 Matrix4 u;
134 u.loadMultiply(*this, v);
135 *this = u;
136 }
Romain Guy7ae7ac42010-06-25 13:46:18 -0700137 }
Romain Guy08ae3172010-06-21 19:35:50 -0700138
Romain Guyddb80be2010-09-20 19:04:33 -0700139 void multiply(float v);
140
Chris Craikf57776b2013-10-25 18:30:17 -0700141 void translate(float x, float y, float z = 0) {
Romain Guyf6bed4f2013-06-20 17:52:07 -0700142 if ((getType() & sGeometryMask) <= kTypeTranslate) {
Romain Guy4c2547f2013-06-11 16:19:24 -0700143 data[kTranslateX] += x;
144 data[kTranslateY] += y;
Chris Craikf57776b2013-10-25 18:30:17 -0700145 data[kTranslateZ] += z;
John Recka447d292014-06-11 18:39:44 -0700146 mType |= kTypeUnknown;
Romain Guy4c2547f2013-06-11 16:19:24 -0700147 } else {
148 // Doing a translation will only affect the translate bit of the type
149 // Save the type
Romain Guyf6bed4f2013-06-20 17:52:07 -0700150 uint8_t type = mType;
Romain Guy4c2547f2013-06-11 16:19:24 -0700151
152 Matrix4 u;
Chris Craikf57776b2013-10-25 18:30:17 -0700153 u.loadTranslate(x, y, z);
Romain Guy4c2547f2013-06-11 16:19:24 -0700154 multiply(u);
155
156 // Restore the type and fix the translate bit
157 mType = type;
158 if (data[kTranslateX] != 0.0f || data[kTranslateY] != 0.0f) {
159 mType |= kTypeTranslate;
160 } else {
161 mType &= ~kTypeTranslate;
162 }
163 }
Romain Guy7ae7ac42010-06-25 13:46:18 -0700164 }
Romain Guy08ae3172010-06-21 19:35:50 -0700165
Romain Guy7ae7ac42010-06-25 13:46:18 -0700166 void scale(float sx, float sy, float sz) {
167 Matrix4 u;
168 u.loadScale(sx, sy, sz);
169 multiply(u);
170 }
Romain Guy08ae3172010-06-21 19:35:50 -0700171
Romain Guy807daf72011-01-18 11:19:19 -0800172 void skew(float sx, float sy) {
173 Matrix4 u;
174 u.loadSkew(sx, sy);
175 multiply(u);
176 }
177
Romain Guy7ae7ac42010-06-25 13:46:18 -0700178 void rotate(float angle, float x, float y, float z) {
179 Matrix4 u;
180 u.loadRotate(angle, x, y, z);
181 multiply(u);
182 }
Romain Guy08ae3172010-06-21 19:35:50 -0700183
Romain Guy8ce00302013-01-15 18:51:42 -0800184 /**
185 * If the matrix is identity or translate and/or scale.
186 */
Chris Craik710f46d2012-09-17 17:25:49 -0700187 bool isSimple() const;
Romain Guy8ce00302013-01-15 18:51:42 -0800188 bool isPureTranslate() const;
Chris Craik710f46d2012-09-17 17:25:49 -0700189 bool isIdentity() const;
Romain Guya3dc55f2012-09-28 13:55:44 -0700190 bool isPerspective() const;
Romain Guy8ce00302013-01-15 18:51:42 -0800191 bool rectToRect() const;
Chris Craikd965bc52013-09-16 14:47:13 -0700192 bool positiveScale() const;
Romain Guy6620c6d2010-12-06 18:07:02 -0800193
Chris Craik710f46d2012-09-17 17:25:49 -0700194 bool changesBounds() const;
Romain Guye8cb9c142010-10-04 14:14:11 -0700195
Romain Guy7ae7ac42010-06-25 13:46:18 -0700196 void copyTo(float* v) const;
197 void copyTo(SkMatrix& v) const;
Romain Guy08ae3172010-06-21 19:35:50 -0700198
Chris Craikb79a3e32014-03-11 12:20:17 -0700199 float mapZ(const Vector3& orig) const;
Chris Craikf57776b2013-10-25 18:30:17 -0700200 void mapPoint3d(Vector3& vec) const;
John Reck1bcacfd2017-11-03 10:12:19 -0700201 void mapPoint(float& x, float& y) const; // 2d only
202 void mapRect(Rect& r) const; // 2d only
Romain Guy9d5316e2010-06-24 19:30:36 -0700203
Romain Guy624234f2013-03-05 16:43:31 -0800204 float getTranslateX() const;
205 float getTranslateY() const;
Romain Guybd6b79b2010-06-26 00:13:53 -0700206
Romain Guy3b753822013-03-05 10:27:35 -0800207 void decomposeScale(float& sx, float& sy) const;
208
Chris Craike84a2082014-12-22 14:28:49 -0800209 void dump(const char* label = nullptr) const;
Romain Guy08ae3172010-06-21 19:35:50 -0700210
Chris Craik91eff222016-02-22 13:39:33 -0800211 friend std::ostream& operator<<(std::ostream& os, const Matrix4& matrix) {
212 if (matrix.isSimple()) {
213 os << "offset " << matrix.getTranslateX() << "x" << matrix.getTranslateY();
214 if (!matrix.isPureTranslate()) {
215 os << ", scale " << matrix[kScaleX] << "x" << matrix[kScaleY];
216 }
217 } else {
218 os << "[" << matrix[0];
219 for (int i = 1; i < 16; i++) {
220 os << ", " << matrix[i];
221 }
222 os << "]";
223 }
224 return os;
225 }
226
Romain Guyc74f45a2013-02-26 19:10:14 -0800227 static const Matrix4& identity();
228
John Reck2f69d6d2016-04-28 13:18:51 -0700229 void invalidateType() { mType = kTypeUnknown; }
230
Romain Guyf6a11b82010-06-23 17:47:49 -0700231private:
Romain Guyf6bed4f2013-06-20 17:52:07 -0700232 mutable uint8_t mType;
Romain Guyaf28b512010-08-12 14:34:44 -0700233
John Reck1bcacfd2017-11-03 10:12:19 -0700234 inline float get(int i, int j) const { return data[i * 4 + j]; }
Romain Guy08ae3172010-06-21 19:35:50 -0700235
John Reck1bcacfd2017-11-03 10:12:19 -0700236 inline void set(int i, int j, float v) { data[i * 4 + j] = v; }
Romain Guy8ce00302013-01-15 18:51:42 -0800237
Romain Guyf6bed4f2013-06-20 17:52:07 -0700238 uint8_t getGeometryType() const;
Romain Guy8ce00302013-01-15 18:51:42 -0800239
John Reck1bcacfd2017-11-03 10:12:19 -0700240}; // class Matrix4
Romain Guy08ae3172010-06-21 19:35:50 -0700241
242///////////////////////////////////////////////////////////////////////////////
243// Types
244///////////////////////////////////////////////////////////////////////////////
245
246typedef Matrix4 mat4;
247
Chris Blume7b8a8082018-11-30 15:51:58 -0800248} // namespace uirenderer
249} // namespace android