mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 23:21:41 -04:00
82 lines
1.7 KiB
C++
82 lines
1.7 KiB
C++
#include "f/f_base.h"
|
|
#include "f/f_list_mg.h"
|
|
#include "f/f_list_mg_ptmf.h"
|
|
|
|
void fLiMgPTMF_c::addNode(fLiNdPrio_c *add) {
|
|
fLiNdPrio_c *node = getFirst();
|
|
|
|
if (add == nullptr) {
|
|
return;
|
|
}
|
|
|
|
if (node == nullptr) {
|
|
append(add);
|
|
return;
|
|
}
|
|
|
|
if (node->getOrder() > add->getOrder()) {
|
|
insertAfter(add, nullptr);
|
|
return;
|
|
}
|
|
|
|
while (node->getNext() != nullptr && node->getNext()->getOrder() <= add->getOrder()) {
|
|
node = node->getNext();
|
|
}
|
|
insertAfter(add, node);
|
|
}
|
|
|
|
bool fLiMgPTMF_c::walkPack() {
|
|
if (mpProcFunc == nullptr) {
|
|
return true;
|
|
}
|
|
|
|
fLiNdBa_c *node = getFirst();
|
|
while (node != nullptr) {
|
|
fLiNdBa_c *next_node = node->getNext();
|
|
(node->p_owner->*mpProcFunc)();
|
|
node = next_node;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
const fLiNdBa_c *fLiMgBa_c::searchNodeByID(fBaseID_e id) const {
|
|
fLiNdBa_c *node = getFirst();
|
|
while (node != nullptr) {
|
|
if (node->p_owner->mID == id) {
|
|
return node;
|
|
}
|
|
node = node->getNext();
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
const fLiNdBa_c *fLiMgBa_c::searchNodeByProfName(ProfileName name, fLiNdBa_c *start) const {
|
|
fLiNdBa_c *node = start != nullptr ? start->getNext() : getFirst();
|
|
while (node != nullptr) {
|
|
if (node->p_owner->mProfileName == name) {
|
|
return node;
|
|
}
|
|
node = node->getNext();
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void fLiNdBa_c::link(fBase_c *link) {
|
|
if (p_owner != nullptr) {
|
|
unlink();
|
|
}
|
|
|
|
if (link != nullptr) {
|
|
p_owner = link;
|
|
link->mActorList.append(this);
|
|
}
|
|
}
|
|
|
|
void fLiNdBa_c::unlink() {
|
|
if (p_owner != nullptr) {
|
|
p_owner->mActorList.remove(this);
|
|
p_owner = nullptr;
|
|
}
|
|
}
|