3#include "game/field/CourseColMgr.hh"
8ObjColMgr::ObjColMgr(
const void *file)
9 : m_mtx(
EGG::Matrix34f::ident), m_mtxInv(
EGG::Matrix34f::ident), m_kclScale(1.0f) {
10 m_data =
new KColData(file);
14ObjColMgr::~ObjColMgr() {
20void ObjColMgr::narrScLocal(f32 radius,
const EGG::Vector3f &pos, KCLTypeMask flags) {
22 CourseColMgr::Instance()->scaledNarrowScopeLocal(m_kclScale, radius, m_data, posWrtModel,
29 return m_mtx.ps_multVector(posLocal);
35 return m_mtx.ps_multVector(posLocal);
40 KCLTypeMask flags, CollisionInfoPartial *info, KCLTypeMask *typeMaskOut) {
42 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
43 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
44 auto *courseColMgr = CourseColMgr::Instance();
47 CollisionInfoPartial tempInfo;
48 tempInfo.bbox.setZero();
50 if (courseColMgr->noBounceWallInfo()) {
51 courseColMgr->setLocalMtx(&m_mtx);
54 if (courseColMgr->checkPointPartial(m_kclScale, m_data, posWrtModel, prevPosWrtModel, flags,
55 &tempInfo, typeMaskOut)) {
56 tempInfo.bbox.min = m_mtx.ps_multVector33(tempInfo.bbox.min);
57 tempInfo.bbox.max = m_mtx.ps_multVector33(tempInfo.bbox.max);
60 tempInfo.bbox.min = min.
minimize(tempInfo.bbox.max);
61 tempInfo.bbox.max = min.
maximize(tempInfo.bbox.max);
63 info->bbox.min = info->bbox.min.
minimize(tempInfo.bbox.min);
64 info->bbox.max = info->bbox.max.
maximize(tempInfo.bbox.max);
72 return courseColMgr->checkPointPartial(m_kclScale, m_data, posWrtModel, prevPosWrtModel, flags,
78 KCLTypeMask flags, CollisionInfoPartial *info, KCLTypeMask *typeMaskOut) {
80 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
81 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
82 auto *courseColMgr = CourseColMgr::Instance();
85 CollisionInfoPartial tempInfo;
86 tempInfo.bbox.setZero();
88 if (courseColMgr->noBounceWallInfo()) {
89 courseColMgr->setLocalMtx(&m_mtx);
92 if (courseColMgr->checkPointPartialPush(m_kclScale, m_data, posWrtModel, prevPosWrtModel,
93 flags, &tempInfo, typeMaskOut)) {
94 tempInfo.bbox.min = m_mtx.ps_multVector33(tempInfo.bbox.min);
95 tempInfo.bbox.max = m_mtx.ps_multVector33(tempInfo.bbox.max);
98 tempInfo.bbox.min = min.
minimize(tempInfo.bbox.max);
99 tempInfo.bbox.max = min.
maximize(tempInfo.bbox.max);
101 info->bbox.min = info->bbox.min.
minimize(tempInfo.bbox.min);
102 info->bbox.max = info->bbox.max.
maximize(tempInfo.bbox.max);
110 return courseColMgr->checkPointPartialPush(m_kclScale, m_data, posWrtModel, prevPosWrtModel,
111 flags, info, typeMaskOut);
116 KCLTypeMask flags, CollisionInfo *info, KCLTypeMask *typeMaskOut) {
118 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
119 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
120 auto *courseColMgr = CourseColMgr::Instance();
123 CollisionInfo tempInfo;
126 if (courseColMgr->noBounceWallInfo()) {
127 courseColMgr->setLocalMtx(&m_mtx);
130 if (courseColMgr->checkPointFull(m_kclScale, m_data, posWrtModel, prevPosWrtModel, flags,
131 &tempInfo, typeMaskOut)) {
132 info->transformInfo(tempInfo, m_mtx);
140 return courseColMgr->checkPointFull(m_kclScale, m_data, posWrtModel, prevPosWrtModel, flags,
146 KCLTypeMask flags, CollisionInfo *info, KCLTypeMask *typeMaskOut) {
148 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
149 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
150 auto *courseColMgr = CourseColMgr::Instance();
153 CollisionInfo tempInfo;
156 if (courseColMgr->noBounceWallInfo()) {
157 courseColMgr->setLocalMtx(&m_mtx);
160 if (courseColMgr->checkPointFullPush(m_kclScale, m_data, posWrtModel, prevPosWrtModel,
161 flags, &tempInfo, typeMaskOut)) {
162 info->transformInfo(tempInfo, m_mtx);
170 return courseColMgr->checkPointFullPush(m_kclScale, m_data, posWrtModel, prevPosWrtModel, flags,
175bool ObjColMgr::checkSpherePartial(f32 radius,
const EGG::Vector3f &pos,
176 const EGG::Vector3f &prevPos, KCLTypeMask flags, CollisionInfoPartial *info,
177 KCLTypeMask *typeMaskOut) {
179 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
180 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
181 auto *courseColMgr = CourseColMgr::Instance();
184 CollisionInfoPartial tempInfo;
185 tempInfo.bbox.setZero();
187 if (courseColMgr->noBounceWallInfo()) {
188 courseColMgr->setLocalMtx(&m_mtx);
191 if (courseColMgr->checkSpherePartial(m_kclScale, radius, m_data, posWrtModel,
192 prevPosWrtModel, flags, &tempInfo, typeMaskOut)) {
193 tempInfo.bbox.min = m_mtx.ps_multVector33(tempInfo.bbox.min);
194 tempInfo.bbox.max = m_mtx.ps_multVector33(tempInfo.bbox.max);
197 tempInfo.bbox.min = min.
minimize(tempInfo.bbox.max);
198 tempInfo.bbox.max = min.
maximize(tempInfo.bbox.max);
200 info->bbox.min = info->bbox.min.
minimize(tempInfo.bbox.min);
201 info->bbox.max = info->bbox.max.
maximize(tempInfo.bbox.max);
209 return courseColMgr->checkSpherePartial(m_kclScale, radius, m_data, posWrtModel,
210 prevPosWrtModel, flags, info, typeMaskOut);
214bool ObjColMgr::checkSpherePartialPush(f32 radius,
const EGG::Vector3f &pos,
215 const EGG::Vector3f &prevPos, KCLTypeMask flags, CollisionInfoPartial *info,
216 KCLTypeMask *typeMaskOut) {
218 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
219 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
220 auto *courseColMgr = CourseColMgr::Instance();
223 CollisionInfoPartial tempInfo;
224 tempInfo.bbox.setZero();
226 if (courseColMgr->noBounceWallInfo()) {
227 courseColMgr->setLocalMtx(&m_mtx);
230 if (courseColMgr->checkSpherePartialPush(m_kclScale, radius, m_data, posWrtModel,
231 prevPosWrtModel, flags, &tempInfo, typeMaskOut)) {
232 tempInfo.bbox.min = m_mtx.ps_multVector33(tempInfo.bbox.min);
233 tempInfo.bbox.max = m_mtx.ps_multVector33(tempInfo.bbox.max);
236 tempInfo.bbox.min = min.
minimize(tempInfo.bbox.max);
237 tempInfo.bbox.max = min.
maximize(tempInfo.bbox.max);
239 info->bbox.min = info->bbox.min.
minimize(tempInfo.bbox.min);
240 info->bbox.max = info->bbox.max.
maximize(tempInfo.bbox.max);
248 return courseColMgr->checkSpherePartialPush(m_kclScale, radius, m_data, posWrtModel,
249 prevPosWrtModel, flags, info, typeMaskOut);
254 KCLTypeMask flags, CollisionInfo *info, KCLTypeMask *typeMaskOut) {
256 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
257 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
258 auto *courseColMgr = CourseColMgr::Instance();
261 CollisionInfo tempInfo;
264 if (courseColMgr->noBounceWallInfo()) {
265 courseColMgr->setLocalMtx(&m_mtx);
268 if (courseColMgr->checkSphereFull(m_kclScale, radius, m_data, posWrtModel, prevPosWrtModel,
269 flags, &tempInfo, typeMaskOut)) {
270 info->transformInfo(tempInfo, m_mtx);
278 return courseColMgr->checkSphereFull(m_kclScale, radius, m_data, posWrtModel, prevPosWrtModel,
279 flags, info, typeMaskOut);
283bool ObjColMgr::checkSphereFullPush(f32 radius,
const EGG::Vector3f &pos,
284 const EGG::Vector3f &prevPos, KCLTypeMask flags, CollisionInfo *info,
285 KCLTypeMask *typeMaskOut) {
287 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
288 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
289 auto *courseColMgr = CourseColMgr::Instance();
292 CollisionInfo tempInfo;
295 if (courseColMgr->noBounceWallInfo()) {
296 courseColMgr->setLocalMtx(&m_mtx);
299 if (courseColMgr->checkSphereFullPush(m_kclScale, radius, m_data, posWrtModel,
300 prevPosWrtModel, flags, &tempInfo, typeMaskOut)) {
301 info->transformInfo(tempInfo, m_mtx);
309 return courseColMgr->checkSphereFullPush(m_kclScale, radius, m_data, posWrtModel,
310 prevPosWrtModel, flags, info, typeMaskOut);
315 KCLTypeMask flags, CollisionInfoPartial *info, KCLTypeMask *typeMaskOut) {
316 if (m_data->prismCache(0) == 0) {
321 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
322 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
323 auto *courseColMgr = CourseColMgr::Instance();
326 CollisionInfoPartial tempInfo;
327 tempInfo.bbox.setZero();
329 if (courseColMgr->noBounceWallInfo()) {
330 courseColMgr->setLocalMtx(&m_mtx);
333 if (courseColMgr->checkPointCachedPartial(m_kclScale, m_data, posWrtModel, prevPosWrtModel,
334 flags, &tempInfo, typeMaskOut)) {
335 tempInfo.bbox.min = m_mtx.ps_multVector33(tempInfo.bbox.min);
336 tempInfo.bbox.max = m_mtx.ps_multVector33(tempInfo.bbox.max);
339 tempInfo.bbox.min = min.
minimize(tempInfo.bbox.max);
340 tempInfo.bbox.max = min.
maximize(tempInfo.bbox.max);
342 info->bbox.min = info->bbox.min.
minimize(tempInfo.bbox.min);
343 info->bbox.max = info->bbox.max.
maximize(tempInfo.bbox.max);
351 return courseColMgr->checkPointCachedPartial(m_kclScale, m_data, posWrtModel, prevPosWrtModel,
352 flags, info, typeMaskOut);
357 KCLTypeMask flags, CollisionInfoPartial *info, KCLTypeMask *typeMaskOut) {
358 if (m_data->prismCache(0) == 0) {
363 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
364 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
365 auto *courseColMgr = CourseColMgr::Instance();
368 CollisionInfoPartial tempInfo;
369 tempInfo.bbox.setZero();
371 if (courseColMgr->noBounceWallInfo()) {
372 courseColMgr->setLocalMtx(&m_mtx);
375 if (courseColMgr->checkPointCachedPartialPush(m_kclScale, m_data, posWrtModel,
376 prevPosWrtModel, flags, &tempInfo, typeMaskOut)) {
377 tempInfo.bbox.min = m_mtx.ps_multVector33(tempInfo.bbox.min);
378 tempInfo.bbox.max = m_mtx.ps_multVector33(tempInfo.bbox.max);
381 tempInfo.bbox.min = min.
minimize(tempInfo.bbox.max);
382 tempInfo.bbox.max = min.
maximize(tempInfo.bbox.max);
384 info->bbox.min = info->bbox.min.
minimize(tempInfo.bbox.min);
385 info->bbox.max = info->bbox.max.
maximize(tempInfo.bbox.max);
393 return courseColMgr->checkPointCachedPartialPush(m_kclScale, m_data, posWrtModel,
394 prevPosWrtModel, flags, info, typeMaskOut);
399 KCLTypeMask flags, CollisionInfo *info, KCLTypeMask *typeMaskOut) {
400 if (m_data->prismCache(0) == 0) {
405 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
406 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
407 auto *courseColMgr = CourseColMgr::Instance();
410 CollisionInfo tempInfo;
413 if (courseColMgr->noBounceWallInfo()) {
414 courseColMgr->setLocalMtx(&m_mtx);
417 if (courseColMgr->checkPointCachedFull(m_kclScale, m_data, posWrtModel, prevPosWrtModel,
418 flags, &tempInfo, typeMaskOut)) {
419 info->transformInfo(tempInfo, m_mtx);
427 return courseColMgr->checkPointCachedFull(m_kclScale, m_data, posWrtModel, prevPosWrtModel,
428 flags, info, typeMaskOut);
433 KCLTypeMask flags, CollisionInfo *info, KCLTypeMask *typeMaskOut) {
434 if (m_data->prismCache(0) == 0) {
439 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
440 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
441 auto *courseColMgr = CourseColMgr::Instance();
444 CollisionInfo tempInfo;
447 if (courseColMgr->noBounceWallInfo()) {
448 courseColMgr->setLocalMtx(&m_mtx);
451 if (courseColMgr->checkPointCachedFullPush(m_kclScale, m_data, posWrtModel, prevPosWrtModel,
452 flags, &tempInfo, typeMaskOut)) {
453 info->transformInfo(tempInfo, m_mtx);
461 return courseColMgr->checkPointCachedFullPush(m_kclScale, m_data, posWrtModel, prevPosWrtModel,
462 flags, info, typeMaskOut);
466bool ObjColMgr::checkSphereCachedPartial(f32 radius,
const EGG::Vector3f &pos,
467 const EGG::Vector3f &prevPos, KCLTypeMask typeflags, CollisionInfoPartial *info,
468 KCLTypeMask *typeMaskOut) {
469 if (m_data->prismCache(0) == 0) {
474 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
475 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
476 auto *courseColMgr = CourseColMgr::Instance();
479 CollisionInfoPartial tempInfo;
480 tempInfo.bbox.setZero();
482 if (courseColMgr->noBounceWallInfo()) {
483 courseColMgr->setLocalMtx(&m_mtx);
486 if (courseColMgr->checkSphereCachedPartial(m_kclScale, radius, m_data, posWrtModel,
487 prevPosWrtModel, typeflags, &tempInfo, typeMaskOut)) {
488 tempInfo.bbox.min = m_mtx.ps_multVector33(tempInfo.bbox.min);
489 tempInfo.bbox.max = m_mtx.ps_multVector33(tempInfo.bbox.max);
492 tempInfo.bbox.min = min.
minimize(tempInfo.bbox.max);
493 tempInfo.bbox.max = min.
maximize(tempInfo.bbox.max);
495 info->bbox.min = info->bbox.min.
minimize(tempInfo.bbox.min);
496 info->bbox.max = info->bbox.max.
maximize(tempInfo.bbox.max);
504 return courseColMgr->checkSphereCachedPartial(m_kclScale, radius, m_data, posWrtModel,
505 prevPosWrtModel, typeflags, info, typeMaskOut);
509bool ObjColMgr::checkSphereCachedPartialPush(f32 radius,
const EGG::Vector3f &pos,
510 const EGG::Vector3f &prevPos, KCLTypeMask typeflags, CollisionInfoPartial *info,
511 KCLTypeMask *typeMaskOut) {
512 if (m_data->prismCache(0) == 0) {
517 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
518 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
519 auto *courseColMgr = CourseColMgr::Instance();
522 CollisionInfoPartial tempInfo;
523 tempInfo.bbox.setZero();
525 if (courseColMgr->noBounceWallInfo()) {
526 courseColMgr->setLocalMtx(&m_mtx);
529 if (courseColMgr->checkSphereCachedPartialPush(m_kclScale, radius, m_data, posWrtModel,
530 prevPosWrtModel, typeflags, &tempInfo, typeMaskOut)) {
531 tempInfo.bbox.min = m_mtx.ps_multVector33(tempInfo.bbox.min);
532 tempInfo.bbox.max = m_mtx.ps_multVector33(tempInfo.bbox.max);
535 tempInfo.bbox.min = min.
minimize(tempInfo.bbox.max);
536 tempInfo.bbox.max = min.
maximize(tempInfo.bbox.max);
538 info->bbox.min = info->bbox.min.
minimize(tempInfo.bbox.min);
539 info->bbox.max = info->bbox.max.
maximize(tempInfo.bbox.max);
547 return courseColMgr->checkSphereCachedPartialPush(m_kclScale, radius, m_data, posWrtModel,
548 prevPosWrtModel, typeflags, info, typeMaskOut);
552bool ObjColMgr::checkSphereCachedFull(f32 radius,
const EGG::Vector3f &pos,
553 const EGG::Vector3f &prevPos, KCLTypeMask typeflags, CollisionInfo *info,
554 KCLTypeMask *typeMaskOut) {
555 if (m_data->prismCache(0) == 0) {
560 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
561 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
562 auto *courseColMgr = CourseColMgr::Instance();
565 CollisionInfo tempInfo;
568 if (courseColMgr->noBounceWallInfo()) {
569 courseColMgr->setLocalMtx(&m_mtx);
572 if (courseColMgr->checkSphereCachedFull(m_kclScale, radius, m_data, posWrtModel,
573 prevPosWrtModel, typeflags, &tempInfo, typeMaskOut)) {
574 info->transformInfo(tempInfo, m_mtx);
582 return courseColMgr->checkSphereCachedFull(m_kclScale, radius, m_data, posWrtModel,
583 prevPosWrtModel, typeflags, info, typeMaskOut);
587bool ObjColMgr::checkSphereCachedFullPush(f32 radius,
const EGG::Vector3f &pos,
588 const EGG::Vector3f &prevPos, KCLTypeMask typeflags, CollisionInfo *info,
589 KCLTypeMask *typeMaskOut) {
590 if (m_data->prismCache(0) == 0) {
595 bool hasPrevY = prevPos.y != std::numeric_limits<f32>::infinity();
596 EGG::Vector3f prevPosWrtModel = hasPrevY ? m_mtxInv.ps_multVector(prevPos) : EGG::Vector3f::inf;
597 auto *courseColMgr = CourseColMgr::Instance();
600 CollisionInfo tempInfo;
603 if (courseColMgr->noBounceWallInfo()) {
604 courseColMgr->setLocalMtx(&m_mtx);
607 if (courseColMgr->checkSphereCachedFullPush(m_kclScale, radius, m_data, posWrtModel,
608 prevPosWrtModel, typeflags, &tempInfo, typeMaskOut)) {
609 info->transformInfo(tempInfo, m_mtx);
617 return courseColMgr->checkSphereCachedFullPush(m_kclScale, radius, m_data, posWrtModel,
618 prevPosWrtModel, typeflags, info, typeMaskOut);
Vector3f maximize(const Vector3f &rhs) const
Returns a vector whose elements are the max of the elements of both vectors.
Vector3f minimize(const Vector3f &rhs) const
Returns a vector whose elements are the min of the elements of both vectors.