mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-03 23:35:36 +00:00
Add initial pathfinding class files
This commit is contained in:
parent
c854a74ae4
commit
29b6f94976
1
src/MetroidPrime/PathFinding/CPathFindArea.cpp
Normal file
1
src/MetroidPrime/PathFinding/CPathFindArea.cpp
Normal file
@ -0,0 +1 @@
|
||||
#include "MetroidPrime/PathFinding/CPathFindArea.hpp"
|
21
src/MetroidPrime/PathFinding/CPathFindRegion.cpp
Normal file
21
src/MetroidPrime/PathFinding/CPathFindRegion.cpp
Normal file
@ -0,0 +1,21 @@
|
||||
#include "MetroidPrime/PathFinding/CPathFindRegion.hpp"
|
||||
|
||||
#include "MetroidPrime/PathFinding/CPathFindArea.hpp"
|
||||
|
||||
CPFRegionData::CPFRegionData()
|
||||
: x0_bestPointDistSq(0.f)
|
||||
, x4_bestPoint(CVector3f::Zero())
|
||||
, x10_cookie(-1)
|
||||
, x14_cost(0.f)
|
||||
, x18_g(0.f)
|
||||
, x1c_h(0.f)
|
||||
, x20_parent(nullptr)
|
||||
, x24_openLess(nullptr)
|
||||
, x28_openMore(nullptr)
|
||||
, x2c_parentLink(0) {
|
||||
|
||||
};
|
||||
|
||||
|
||||
void CPFRegion::Fixup(CPFArea& area, int& numNodes) {
|
||||
}
|
1
src/MetroidPrime/PathFinding/CPathFindSearch.cpp
Normal file
1
src/MetroidPrime/PathFinding/CPathFindSearch.cpp
Normal file
@ -0,0 +1 @@
|
||||
#include "MetroidPrime/PathFinding/CPathFindSearch.hpp"
|
Loading…
x
Reference in New Issue
Block a user