mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-26 14:19:38 -04:00
073992df8d
* cleanup f_pc files * cleanup f_op files * fix a couple f_op_actor_mng functions * minor JSystem work
29 lines
997 B
C++
29 lines
997 B
C++
/**
|
|
* f_op_camera_mng.cpp
|
|
* Camera Process Manager
|
|
*/
|
|
|
|
#include "f_op/f_op_camera_mng.h"
|
|
#include "f_pc/f_pc_layer.h"
|
|
#include "f_pc/f_pc_stdcreate_req.h"
|
|
|
|
/* 803F1DD8-803F1DE8 01EAF8 0010+00 1/1 0/0 0/0 .bss l_fopCamM_id */
|
|
static fpc_ProcID l_fopCamM_id[4];
|
|
|
|
/* 8001E308-8001E310 018C48 0008+00 0/0 12/12 2/2 .text fopCamM_GetParam__FP12camera_class */
|
|
u32 fopCamM_GetParam(camera_class* i_this) {
|
|
return i_this->base.parameters;
|
|
}
|
|
|
|
/* 8001E310-8001E374 018C50 0064+00 0/0 1/1 0/0 .text fopCamM_Create__FisPv */
|
|
fpc_ProcID fopCamM_Create(int i_cameraIdx, s16 i_procName, void* i_append) {
|
|
l_fopCamM_id[i_cameraIdx] = fpcSCtRq_Request(fpcLy_CurrentLayer(), i_procName, NULL, NULL, i_append);
|
|
return l_fopCamM_id[i_cameraIdx];
|
|
}
|
|
|
|
/* 8001E374-8001E378 018CB4 0004+00 0/0 1/1 0/0 .text fopCamM_Management__Fv */
|
|
void fopCamM_Management() {}
|
|
|
|
/* 8001E378-8001E37C 018CB8 0004+00 0/0 1/1 0/0 .text fopCamM_Init__Fv */
|
|
void fopCamM_Init() {}
|