mirror of https://github.com/zeldaret/tp.git
57 lines
1.9 KiB
C++
57 lines
1.9 KiB
C++
/**
|
|
* f_pc_layer_iter.cpp
|
|
* Framework - Process Layer Iterator
|
|
*/
|
|
|
|
#include "f_pc/f_pc_layer_iter.h"
|
|
#include "SSystem/SComponent/c_tag_iter.h"
|
|
#include "SSystem/SComponent/c_tree_iter.h"
|
|
#include "f_pc/f_pc_layer.h"
|
|
|
|
/* 80021B88-80021BC0 0038+00 s=1 e=4 z=0 None .text fpcLyIt_OnlyHere__FP11layer_classPFPvPv_iPv
|
|
*/
|
|
s32 fpcLyIt_OnlyHere(layer_class* i_layer, fpcLyIt_OnlyHereFunc i_func, void* i_data) {
|
|
layer_iter lIter;
|
|
lIter.mpFunc = i_func;
|
|
lIter.mpUserData = i_data;
|
|
return cTrIt_Method(&i_layer->mNodeListTree, (cNdIt_MethodFunc)cTgIt_MethodCall, &lIter);
|
|
}
|
|
|
|
/* 80021BC0-80021C28 0068+00 s=0 e=1 z=0 None .text fpcLyIt_OnlyHereLY__FP11layer_classPFPvPv_iPv
|
|
*/
|
|
s32 fpcLyIt_OnlyHereLY(layer_class* i_layer, fpcLyIt_OnlyHereFunc i_func, void* i_data) {
|
|
s32 result;
|
|
layer_class* currentLayer = fpcLy_CurrentLayer();
|
|
fpcLy_SetCurrentLayer(i_layer);
|
|
result = fpcLyIt_OnlyHere(i_layer, i_func, i_data);
|
|
fpcLy_SetCurrentLayer(currentLayer);
|
|
return result;
|
|
}
|
|
|
|
/* 80021C28-80021C60 0038+00 s=0 e=3 z=0 None .text fpcLyIt_Judge__FP11layer_classPFPvPv_PvPv
|
|
*/
|
|
void* fpcLyIt_Judge(layer_class* i_layer, fpcLyIt_JudgeFunc i_func, void* i_data) {
|
|
layer_iter lIter;
|
|
lIter.mpFunc = i_func;
|
|
lIter.mpUserData = i_data;
|
|
return cTrIt_Judge(&i_layer->mNodeListTree, (cNdIt_JudgeFunc)cTgIt_JudgeFilter, &lIter);
|
|
}
|
|
|
|
/* 80021C60-80021CD4 0074+00 s=0 e=1 z=4 None .text fpcLyIt_AllJudge__FPFPvPv_PvPv */
|
|
void* fpcLyIt_AllJudge(fpcLyIt_JudgeFunc i_func, void* i_data) {
|
|
layer_iter lIter;
|
|
layer_class* current;
|
|
lIter.mpFunc = i_func;
|
|
lIter.mpUserData = i_data;
|
|
|
|
current = fpcLy_RootLayer();
|
|
while (current != NULL) {
|
|
void* result =
|
|
cTrIt_Judge(¤t->mNodeListTree, (cNdIt_JudgeFunc)cTgIt_JudgeFilter, &lIter);
|
|
if (result != NULL) {
|
|
return result;
|
|
}
|
|
current = (layer_class*)current->mNode.mpNextNode;
|
|
}
|
|
return NULL;
|
|
} |