summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-12-22Improve rebuild times by removing unnecessary includes in AI headersLéo Lam
2022-12-22ksys/act: Clean up RootAiFlag/RootAiFlag2 definitions and usageLéo Lam
2022-12-21ksys/phys: Add RagdollController (the real one, not RagdollInstance)Léo Lam
2022-12-20ksys/phys: Rename RagdollController to RagdollInstanceLéo Lam
RagdollController is a different thing!
2022-12-20ksys/phys: Add RagdollController::getTransform and moreLéo Lam
Credit to @Dragorn421 for helping me figure out the rotation matrix thing in the getTransform function
2022-12-20clang-tidy: Relax member name check (for AI parameter variables)Léo Lam
2022-12-20lib: Update seadLéo Lam
2022-12-19ksys/phys: Improve RagdollController::setUnk1 matchLéo Lam
https://discord.com/channels/688807550715560050/745633101157498880/1054479382892249119 [20:24]TheGreatB3: The Wii U version sets the fields to zero if the value is less than zero, so I think it's really using clamp.
2022-12-19ksys/phys: Match RagdollController::setUnk1Léo Lam
2022-12-19Handle nn::gfx merge (#108)ThePixelCoder
* Fix build and document nn::gfx merge * Update submodules and some extra labelling in csv * Fix various issues * Make versioning more flexible
2022-12-19ksys/phys: Implement the rest of the easy RagdollController functionsLéo Lam
2022-12-19ksys/phys: Implement more RagdollController functionsLéo Lam
2022-12-18ksys/phys: Clarify EntityCollisionMask structure and namesLéo Lam
2022-12-18ksys/phys: Finish RagdollRigidBody and add more RagdollController functionsLéo Lam
2022-12-17ksys/phys: Use named bools in RigidBody to improve call site readabilityLéo Lam
2022-11-21Implement TeraMeshRigidBody class (#107)Briggs Baltzell
2022-11-20Implement ksys::phys::CharacterPrismShape class (#106)Briggs Baltzell
2022-11-19Add NXArgsecumber
2022-10-18Decompile some Action classes (#104)notyourav
* various action classes * rename instanceset fns * rename isFork -> isChangeable
2022-10-13ksys: Refactor VFRVec3f::chase into reusable/inlinable functionLéo Lam
Might be useful for https://decomp.me/scratch/n58lh
2022-10-09Decompile most of E3mgr (#101)louist103
2022-08-28ksys/phys: Remove useless includeLéo Lam
2022-08-08Added WeatherMgr::rollNewWeather (#100)savage13
2022-07-24VideoRecorder addedecumber
2022-07-01ksys/phys: Start adding RagdollControllerLéo Lam
2022-07-01IteratorUtil: Fix missing constexpr on getIndex()Léo Lam
2022-07-01IteratorUtil: Forward (non-reference) return types correctlyLéo Lam
With auto&, an operator[] that returns a value (and not a reference) would result in the proxy returning a reference to a local temporary, which is UB
2022-06-30Add clang-tidy config to help enforce naming conventionsLéo Lam
2022-06-28Add ksys::Patrol & ksys::TerminalTonycons-dev
parent 43e001017fcb36ecffe4cad35ba0b73a2de29be9 author Tonycons-dev <70544875+Tonycons-dev@users.noreply.github.com> 1656184351 -0400 committer Tonycons-dev <70544875+Tonycons-dev@users.noreply.github.com> 1656432051 -0400 Squash commits again (last one messed up)
2022-06-25ksys: Add Hio (#95)Tonycons-dev
2022-06-24Fix extra semicolons and enable -Wextra-semi warningLéo Lam
2022-06-22ksys/util: Add range() and indexIter() for convenienceLéo Lam
- range() is similar to Python's range() - indexIter() can be used to simplify `for (int i = 0, n = c.size(); i < n; ++i)` index-based loops
2022-06-22ksys/phys: Add AlsoLockWorld to improve call site readabilityLéo Lam
2022-06-21ksys/phys: Add SkeletonMapperLéo Lam
2022-06-20Change ksys::ProductReporter::incrementSceneAndRomWorkTime to use lambdas ↵ConorBobbleHat
instead of member functions
2022-06-19ksys::ProductReporter (#93)ConorB
Co-authored-by: ConorBobbleHat <ConorBobbleHat>
2022-05-01ksys/phys: Finish ModelBoneAccessorLéo Lam
2022-04-19ksys: Remove BitSet.h from source file listLéo Lam
2022-04-19ksys/phys: Finish detail::ModelSkeletonLéo Lam
2022-04-19Remove BitSet as sead::LongBitFlag is equivalentLéo Lam
2022-04-14ksys/phys: Implement `SphereShape` and `SphereRigidBody` (#92)ConorB
2022-04-02lib: Update aglLéo Lam
2022-04-01ksys/phys: Start adding ModelBoneAccessorLéo Lam
Needs gsys::Model stuff before I can continue
2022-03-29ksys/phys: Add BoneAccessorLéo Lam
2022-03-27ksys/phys: Add HavokMemoryAllocatorLéo Lam
2022-03-26ksys/phys: Add more InstanceSet member variablesLéo Lam
2022-03-26ksys/phys: Merge duplicate definitions of RagdollControllerLéo Lam
2022-03-26ksys/phys: Add RagdollRigidBody stubLéo Lam
Needed for RagdollController.
2022-03-26ksys/phys: Implement several easy RigidBodyRequestMgr functionsLéo Lam
2022-03-26ksys/phys: Add RigidBodyRequestMgr::calc1Léo Lam