Skip to content

Commit

Permalink
Work on daNpc_Hanjo_c (#2225)
Browse files Browse the repository at this point in the history
  • Loading branch information
hatal175 authored Oct 26, 2024
1 parent 8a08025 commit 606178d
Show file tree
Hide file tree
Showing 148 changed files with 2,748 additions and 2,387 deletions.
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,18 @@
"search.useIgnoreFiles": false,
"search.exclude": {
"build/*/config.json": true,
"build/*/report.json": true,
"build/**/*.MAP": true,
"build/**/*.o": true,
"build/**/*.plf": true,
"build/**/*.rel": true,
"build/**/*.lcf": true,
"build/**/*.preplf": true,
"build/**/*.d": true,
"build/**/*.s": true,
"build/**/*.map": true,
"build/**/*.cpp": true,
"build/**/*.ctx": true,
"build.ninja": true,
".ninja_*": true,
"objdiff.json": true,
Expand Down
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,7 @@ def MatchingFor(*versions):
ActorRel(Matching, "d_a_tag_lantern"),
ActorRel(Matching, "d_a_tag_mist"),
ActorRel(Matching, "d_a_tag_msg"),
ActorRel(Matching, "d_a_tag_push"),
ActorRel(Matching, "d_a_tag_push", extra_cflags=['-pragma "nosyminline off"']),
ActorRel(Matching, "d_a_tag_telop"),
ActorRel(NonMatching, "d_a_tbox"),
ActorRel(Matching, "d_a_tbox2"),
Expand Down
2 changes: 2 additions & 0 deletions include/SSystem/SComponent/c_cc_d.h
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,7 @@ class cCcD_ObjCo : public cCcD_ObjCommonBase {
u32 GetVsGrp() const { return MskSPrm(0x70); }
u32 GetIGrp() const { return MskSPrm(0xE); }
u32 ChkNoCrr() const { return MskSPrm(0x100); }
void OnNoCrrBit() { OnSPrmBit(0x100); }
u32 ChkSph3DCrr() const { return MskSPrm(0x80); }
void ClrSet() { OffSPrmBit(1); }
u32 ChkHit() { return MskRPrm(1); }
Expand Down Expand Up @@ -487,6 +488,7 @@ class cCcD_ObjHitInf {
void SetCoHit(cCcD_Obj* obj) { mObjCo.SetHit(obj); }
BOOL ChkAtType(u32 type) const { return mObjAt.MskType(type); }
u32 ChkCoNoCrr() const { return mObjCo.ChkNoCrr(); }
void OnCoNoCrrBit() { mObjCo.OnNoCrrBit(); }
u32 ChkCoSph3DCrr() const { return mObjCo.ChkSph3DCrr(); }
void OnAtSPrmBit(u32 flag) { mObjAt.OnSPrmBit(flag); }
void OffAtSPrmBit(u32 flag) { mObjAt.OffSPrmBit(flag); }
Expand Down
Loading

0 comments on commit 606178d

Please sign in to comment.