Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Use maxTurn for AI rotation speed | b43198bfbc9a9cfe88caf6dabb40aaf55fa5e7b6 | MSE | 2024-07-05 17:34:02 |
Add -DNO_OPENGL3, which seems to help with building for Windows | 3fc75eb3ce6186e4fe34a155b138ac6bfaea74e4 | MSE | 2024-07-03 17:32:43 |
Add sheen to water edge | ecb869a7849857e06f83b3e58a7abc118badcf95 | MSE | 2024-07-02 23:33:16 |
Copy globals from multiple convos on new game (enables 3D title screens) | b7af9cf230da946e04edf1e3e2ed6731b9bfcfbc | MSE | 2024-07-02 04:52:46 |
Work around world floor regression | 46115bf455166ca407a8e99babbb0b0ea6f6bf5b | MSE | 2024-06-22 06:38:58 |
Make static models destroyable | 82b787e2bc63b07d67cac610098580e7aafc054f | MSE | 2024-06-22 06:14:32 |
Make static avatars killable | 76f5731a518512057d7868e6c3f4d24825d74005 | MSE | 2024-06-22 03:26:48 |
Add support for weapon-dependent avatar prims | 4b59a1911ce1f13caddfe187db737914491ba6fe | MSE | 2024-06-20 06:00:45 |
Hide FPS in non-debug builds | 3994b75c7c8ccf67d8d9437582d2533fb4d13dc4 | MSE | 2024-06-19 04:45:32 |
De-hardcode data path for shaders | 648b298f390f039c44f4f23aa8fdd2e5d2650df6 | MSE | 2024-06-16 19:01:24 |
Hide reserve ammo count when there is none | 09c6e3131b04936949f1310e5fd15179b29c5c4f | MSE | 2024-06-12 23:02:55 |
Change rm -f to | 6f4ab08d92f2c99975c7bfa63b3777b4e087af4e | MSE | 2024-06-12 22:13:28 |
Cleanup | feb8a188b14d20819df87ae9ca4f67dec6be07ff | MSE | 2024-06-12 03:43:12 |
Allow setting mono font via init.json | ba70f7a9da5ba2fcfe77d09a8d489de19dfb0061 | MSE | 2024-06-12 03:37:19 |
Add support for particle damage/impact | ed57530ab69e9c32ac19c0c6a36cb6102791b7c6 | MSE | 2024-06-12 00:25:18 |
Add agent linear velocity to projectiles | 2e254d93065e60a6e76dab321aa64aaad72dede7 | MSE | 2024-06-11 16:34:15 |
Add weapon particle support | dc972a7f2cc0019d663b3284a1e49c3be313c74f | MSE | 2024-06-09 20:21:23 |
Initial commit | c4f36c095752bd4e7090caf48320d041fb2328bb | MSE | 2024-06-09 02:33:29 |
File | Lines added | Lines deleted |
---|---|---|
src/fdungeon.cpp | 1 | 1 |
src/rsod.cpp | 1 | 1 |
File src/fdungeon.cpp changed (mode: 100644) (index bbb1b37..64d66aa) | |||
... | ... | Agent *Dungeon::parseAgent( const std::string &text, std::string filePath, linal | |
2240 | 2240 | a->wheelFriction = 10.0; | a->wheelFriction = 10.0; |
2241 | 2241 | a->wheelFloor = 0.0; | a->wheelFloor = 0.0; |
2242 | 2242 | a->turnAcceleration = 0.0; | a->turnAcceleration = 0.0; |
2243 | a->maxTurn = 0.0; | ||
2243 | a->maxTurn = 3.0; // This can apply to non-vehicles as well. | ||
2244 | 2244 | a->maxLean = 0.0; | a->maxLean = 0.0; |
2245 | 2245 | a->acceleration = 0.0; | a->acceleration = 0.0; |
2246 | 2246 | a->topSpeed = 0.0; | a->topSpeed = 0.0; |
File src/rsod.cpp changed (mode: 100644) (index 49b9cf2..2566f8a) | |||
... | ... | bool aiFrame( fdungeon::Agent *a, double d ){ | |
1745 | 1745 | // https://stackoverflow.com/questions/1878907/how-can-i-find-the-difference-between-two-angles | // https://stackoverflow.com/questions/1878907/how-can-i-find-the-difference-between-two-angles |
1746 | 1746 | double diff = yaw_to_target - a->angle.y; | double diff = yaw_to_target - a->angle.y; |
1747 | 1747 | if( std::abs( diff ) > 0.01 && !target_too_far ){ | if( std::abs( diff ) > 0.01 && !target_too_far ){ |
1748 | double rspeed = std::abs( diff ) > 0.05 ? 3.0 : 1.0; | ||
1748 | double rspeed = std::abs( diff ) > 0.05 ? a->maxTurn : a->maxTurn * 0.33; | ||
1749 | 1749 | double rdelta = | double rdelta = |
1750 | 1750 | (std::atan2(sin(diff), cos(diff)) > 0.0 ? rspeed : -rspeed) * d; | (std::atan2(sin(diff), cos(diff)) > 0.0 ? rspeed : -rspeed) * d; |
1751 | 1751 | // TODO: Constrain the delta to not rotate past the target. | // TODO: Constrain the delta to not rotate past the target. |