Blame view

ios/cocos2d/cocos/math/Vec3.cpp 4.67 KB
520389e3   xiaoyu   接入cocos源码,编译未通过,继续修改
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
  /**
   Copyright 2013 BlackBerry Inc.
   Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
  
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
  
   http://www.apache.org/licenses/LICENSE-2.0
  
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
  
   Original file from GamePlay3D: http://gameplay3d.org
  
   This file was modified to fit the cocos2d-x project
   */
  
  #include "math/Vec3.h"
  #include "math/MathUtil.h"
  #include "base/ccMacros.h"
  
  NS_CC_MATH_BEGIN
  
  Vec3::Vec3()
      : x(0.0f), y(0.0f), z(0.0f)
  {
  }
  
  Vec3::Vec3(float xx, float yy, float zz)
      : x(xx), y(yy), z(zz)
  {
  }
  
  Vec3::Vec3(const float* array)
  {
      set(array);
  }
  
  Vec3::Vec3(const Vec3& p1, const Vec3& p2)
  {
      set(p1, p2);
  }
  
  Vec3 Vec3::fromColor(unsigned int color)
  {
      float components[3];
      int componentIndex = 0;
      for (int i = 2; i >= 0; --i)
      {
          int component = (color >> i*8) & 0x0000ff;
  
          components[componentIndex++] = static_cast<float>(component) / 255.0f;
      }
  
      Vec3 value(components);
      return value;
  }
  
  float Vec3::angle(const Vec3& v1, const Vec3& v2)
  {
      float dx = v1.y * v2.z - v1.z * v2.y;
      float dy = v1.z * v2.x - v1.x * v2.z;
      float dz = v1.x * v2.y - v1.y * v2.x;
  
      return std::atan2(std::sqrt(dx * dx + dy * dy + dz * dz) + MATH_FLOAT_SMALL, dot(v1, v2));
  }
  
  void Vec3::add(const Vec3& v1, const Vec3& v2, Vec3* dst)
  {
      GP_ASSERT(dst);
  
      dst->x = v1.x + v2.x;
      dst->y = v1.y + v2.y;
      dst->z = v1.z + v2.z;
  }
  
  void Vec3::clamp(const Vec3& min, const Vec3& max)
  {
      GP_ASSERT(!(min.x > max.x || min.y > max.y || min.z > max.z));
  
      // Clamp the x value.
      if (x < min.x)
          x = min.x;
      if (x > max.x)
          x = max.x;
  
      // Clamp the y value.
      if (y < min.y)
          y = min.y;
      if (y > max.y)
          y = max.y;
  
      // Clamp the z value.
      if (z < min.z)
          z = min.z;
      if (z > max.z)
          z = max.z;
  }
  
  void Vec3::clamp(const Vec3& v, const Vec3& min, const Vec3& max, Vec3* dst)
  {
      GP_ASSERT(dst);
      GP_ASSERT(!(min.x > max.x || min.y > max.y || min.z > max.z));
  
      // Clamp the x value.
      dst->x = v.x;
      if (dst->x < min.x)
          dst->x = min.x;
      if (dst->x > max.x)
          dst->x = max.x;
  
      // Clamp the y value.
      dst->y = v.y;
      if (dst->y < min.y)
          dst->y = min.y;
      if (dst->y > max.y)
          dst->y = max.y;
  
      // Clamp the z value.
      dst->z = v.z;
      if (dst->z < min.z)
          dst->z = min.z;
      if (dst->z > max.z)
          dst->z = max.z;
  }
  
  void Vec3::cross(const Vec3& v)
  {
      cross(*this, v, this);
  }
  
  void Vec3::cross(const Vec3& v1, const Vec3& v2, Vec3* dst)
  {
      GP_ASSERT(dst);
  
      // NOTE: This code assumes Vec3 struct members are contiguous floats in memory.
      // We might want to revisit this (and other areas of code that make this assumption)
      // later to guarantee 100% safety/compatibility.
      MathUtil::crossVec3(&v1.x, &v2.x, &dst->x);
  }
  
  float Vec3::distance(const Vec3& v) const
  {
      float dx = v.x - x;
      float dy = v.y - y;
      float dz = v.z - z;
  
      return std::sqrt(dx * dx + dy * dy + dz * dz);
  }
  
  float Vec3::distanceSquared(const Vec3& v) const
  {
      float dx = v.x - x;
      float dy = v.y - y;
      float dz = v.z - z;
  
      return (dx * dx + dy * dy + dz * dz);
  }
  
  float Vec3::dot(const Vec3& v) const
  {
      return (x * v.x + y * v.y + z * v.z);
  }
  
  float Vec3::dot(const Vec3& v1, const Vec3& v2)
  {
      return (v1.x * v2.x + v1.y * v2.y + v1.z * v2.z);
  }
  
  void Vec3::normalize()
  {
      float n = x * x + y * y + z * z;
      // Already normalized.
      if (n == 1.0f)
          return;
      
      n = std::sqrt(n);
      // Too close to zero.
      if (n < MATH_TOLERANCE)
          return;
      
      n = 1.0f / n;
      x *= n;
      y *= n;
      z *= n;
  }
  
  Vec3 Vec3::getNormalized() const
  {
      Vec3 v(*this);
      v.normalize();
      return v;
  }
  
  void Vec3::subtract(const Vec3& v1, const Vec3& v2, Vec3* dst)
  {
      GP_ASSERT(dst);
  
      dst->x = v1.x - v2.x;
      dst->y = v1.y - v2.y;
      dst->z = v1.z - v2.z;
  }
  
  void Vec3::smooth(const Vec3& target, float elapsedTime, float responseTime)
  {
      if (elapsedTime > 0)
      {
          *this += (target - *this) * (elapsedTime / (elapsedTime + responseTime));
      }
  }
  
  const Vec3 Vec3::ZERO(0.0f, 0.0f, 0.0f);
  const Vec3 Vec3::ONE(1.0f, 1.0f, 1.0f);
  const Vec3 Vec3::UNIT_X(1.0f, 0.0f, 0.0f);
  const Vec3 Vec3::UNIT_Y(0.0f, 1.0f, 0.0f);
  const Vec3 Vec3::UNIT_Z(0.0f, 0.0f, 1.0f);
  
  NS_CC_MATH_END