Brian Roberts
e7585f15ab
Merge pull request #1316 from Azaezel/alpha41/colorPickerCleanups
...
colorpicker cleanups
2024-09-17 10:24:03 -05:00
AzaezelX
ead06b845e
colorpicker cleanups
...
largely focuses on removing extraneous code and mangled math
2024-09-16 13:24:41 -05:00
AzaezelX
afeb957601
fix malformed GBitmap::getColor
2024-09-16 12:40:18 -05:00
Areloch
a931e9a308
Tweaks the Scene and SubScene save calls to handle simGroups to call onto their children
2024-09-05 13:49:13 -05:00
Areloch
6ff92f61bb
Fixed SceneGroup onInspect call to call up through parent
...
Adds utility methods and SimGroup onInspect injection to add a select button in inspector to select objects under simgroup
2024-09-03 18:25:28 -05:00
Areloch
d896a2b99a
Removed scan-down of subscenes from Scene's getObjectsByClass call
...
Properly returned value for SubScene::save()
2024-09-01 17:14:08 -05:00
Areloch
03efedab37
Adds a TORQUE_TOOLS_EXT cmake flag/preprocessor and moves the systemCommand method into that so that one can lock down full shell command execution calls without dropping tools support
2024-09-01 16:55:58 -05:00
Areloch
ae8eca48e1
Implementation of Subscenes, SceneGroups and Gamemodes
...
Standardizes Gamemodes to be an actual class with data and utility functions that can be parsed
Adds inspector field handling for selecting gamemodes
Updated Scene class to work with Gamemodes for the gamemode field
Updates editor suite elements to be able to create SubScenes, SceneGroups and Gamemodes
Adds ability to convert SimGroup to SubScene
Updates BaseUI's chooselevel menu to have gamemode selection and filters shown levels based on selected gamemode
2024-09-01 16:39:00 -05:00
Brian Roberts
bb81b687eb
Merge pull request #1308 from Azaezel/alpha41/loglunk2
...
(backup) correct malformed error reporting
2024-08-28 17:23:08 -05:00
AzaezelX
30dcf0bf78
(backup) correct malformed error reporting
2024-08-28 17:22:44 -05:00
Brian Roberts
5d4925bec7
Merge pull request #1273 from Azaezel/alpha41/steeringSupport
...
play steering thread on server so mounted objects like turrets can be…
2024-08-28 17:15:28 -05:00
AzaezelX
24a1636edd
correct malformed error reporting
2024-08-28 17:14:42 -05:00
Brian Roberts
0d07823ecd
Merge pull request #1305 from Azaezel/alpha41/beNormal
...
let normal maps handle raw file locations (imposter support)
2024-08-26 20:08:09 -05:00
AzaezelX
2629d28520
let normal maps handle raw file locations (imposter support)
2024-08-22 18:16:19 -05:00
AzaezelX
1055dc8415
guiaudio crashfix on exit
...
further ensure sound playback isn't even started unless the test condition is true and the gui element is awake
remove redundant sfx->stop(). already does so with SFX_DELETE(source)
2024-08-07 21:51:36 -05:00
Brian Roberts
35e50b54b9
Merge pull request #1302 from Azaezel/alpha41/guiAudioCtrlFixes
...
guiAudiocCtrl fixes
2024-08-07 17:51:13 -05:00
AzaezelX
7678f680a4
fix light emission point for shapebaseimaged
...
light generally comes from the muzzle of a gun, not the ground
2024-08-07 11:02:46 -05:00
AzaezelX
9b5f137f77
guiAudiocCtrl fixes
...
ditch description: not needed.
set process ticking off when the gui element is put to sleep
for the case of re-use of 3d sounds, set emission to the listener position
2024-08-05 17:51:17 -05:00
marauder2k7
9d51fc2830
fix packing
...
now openal and sdl are embedded in the app bundle along with their symlink alternatives
clear out the openal framework and use the embedded dll instead
archiving works and will produce a notarized app if you provide the correct information and enable hardening.
2024-08-04 14:54:25 +01:00
marauder2k7
d62b40a9bf
initial commit
...
this commit fixes the copying of dependencies into the app sandbox
2024-08-03 14:43:57 +01:00
marauder2k7
2ed9fbb6ff
Update mathMatrixTest.cpp
2024-08-01 05:07:54 +01:00
marauder2k7
b72b7882c2
unit test improved precision
...
change matrix unit tests to use POINT_EPSILON macro for testing precision
remove old matrix test class, was not used anyway
2024-08-01 05:04:13 +01:00
marauder2k7
699fa5ef77
Update mMatrix.h
...
invertTo should always just be const
return loop to * operator, explicit will not allow for scaling of rows and cols
2024-08-01 03:33:07 +01:00
marauder2k7
b5e729c179
Update mMatrix.h
...
add default destructor
2024-07-31 19:02:23 +01:00
marauder2k7
219792cc30
Update mMatrix.h
...
returning identity no longer necessary as fullinverse is its own algo
2024-07-31 18:54:22 +01:00
marauder2k7
165a2bea01
fix
...
fix invertTo function
unitTest to make sure matrix calling invertTo does not get changed.
reimplemented gauss jordan.
2024-07-31 18:52:18 +01:00
marauder2k7
ab4b4cbf96
cramer for inverse
...
added #if block around inverse methods to track down shadow bug
uses old inverse method as default for now.
2024-07-31 17:32:00 +01:00
marauder2k7
4078f3ad4e
inverse fixes
...
further tests showed issues with inverse function, now to better match what was originally happening, the inverse only happens on the 3x3 portion of the matrix and translation is handled separately.
Frustum test now uses more real world examples of a projection matrix. Test for the full unproject stack of math to test its result as unproject was where the issue about inverse originated
2024-07-30 17:54:16 +01:00
marauder2k7
f96e044d89
unit tests and fixes
...
implemented the rest of the tests
euler single dimension angle tests now pass, missed 1.0f in z
2024-07-30 13:00:32 +01:00
marauder2k7
d03851958d
more fixes
...
more unit tests revealed more discrepancies fixes applied.
2024-07-30 08:30:42 +01:00
marauder2k7
a5de2d9add
tests
...
added more unit tests to match values between templated and matrix
tests showed discrepancies in affineInverse, fixed the function to return what is expected.
2024-07-30 07:20:57 +01:00
marauder2k7
5883e3d45b
Update mathMatrixTest.cpp
...
test box multiplication
test transformPlane
2024-07-29 22:46:16 +01:00
marauder2k7
8c19f6d8ca
inverse function
...
fixed inverse function, was not returning correctly.
2024-07-29 21:50:33 +01:00
marauder2k7
fc058aaa5c
Update mathMatrixTest.cpp
...
change mul tests to use more real world examples
2024-07-29 20:45:30 +01:00
marauder2k7
409f523dc3
Update mathMatrixTest.cpp
...
more tests that match between template and matrixf
2024-07-29 20:01:39 +01:00
marauder2k7
f77ff37e08
Create mathMatrixTest.cpp
...
committed tests for matrix class
so far all tests are matching between templated and stock matrixf class
2024-07-29 19:24:33 +01:00
marauder2k7
54bb31c8bc
Update mMatrix.h
...
bracket lines
change functions to match mmath_c to figure out where the issue is.
2024-07-29 17:24:23 +01:00
marauder2k7
75c5a0919b
Update mMatrix.h
...
silence issues from macos clang
2024-07-29 16:39:08 +01:00
Brian Roberts
95c7e9f3f2
Merge pull request #1299 from Azaezel/alpha41/abFixes
...
fix guiwindowCTRL callback
2024-07-29 04:06:16 -05:00
marauder2k7
2fa15191ae
Update mMatrix.h
...
most working example
2024-07-28 20:40:26 +01:00
marauder2k7
504b549ac0
Update mMatrix.h
2024-07-28 19:38:02 +01:00
marauder2k7
c61d36b799
closest
...
backup closest working example, no errors or warnings from compile, matrices arent correct though yet.
2024-07-28 19:36:07 +01:00
marauder2k7
888332a85c
rest of the implementation
...
apparently templated classes need all functions to be inline, otherwise unresolved symbols
macro for switching between matrixf and templated
few functions that were missed
2024-07-28 14:35:34 +01:00
marauder2k7
8f8cc32636
normalize and affineInverse
...
added functions for normalize and affineInverse
2024-07-28 11:54:44 +01:00
AzaezelX
265ce8429b
fix guiwindowCTRL callback
...
also set asset browser to use rows or columns depending on which dimension is longer
2024-07-28 05:51:03 -05:00
marauder2k7
2cee5f7e10
mul and operators
...
add mul functions and operators
code conformity changes
2024-07-28 09:02:49 +01:00
marauder2k7
02b5e85f61
implement struct example
2024-07-28 07:04:23 +01:00
marauder2k7
c0bcb8bd00
Update mMatrix.cpp
...
fix comment, torque is already column major, even though doc says its row major
2024-07-28 06:38:11 +01:00
marauder2k7
0f02c878ef
Update mMatrix.h
...
setColumn
setRow
isIdentity
only a few functions left
2024-07-27 23:06:59 +01:00
marauder2k7
dd25f1c58a
backup
...
initial implemenation of templated classes :
Matrix class first.
2024-07-27 15:29:54 +01:00
Areloch
c0dec83a21
Merge pull request #1296 from Azaezel/alpha41/revertReformulation
...
roll back player animation picking
2024-07-26 17:15:46 -05:00
AzaezelX
b5e1b32064
roll back player animation picking
...
old one worked better even if it made the compiler scream
2024-07-26 10:25:02 -05:00
AzaezelX
eaa09a6db7
corrections:
...
fill in missing SceneObjectTypes enums.
parity with simobject.cpp and objecttypes.h
correct inspector display
2024-07-24 20:43:36 -05:00
AzaezelX
72c67e196a
Merge branch 'development' of https://github.com/TorqueGameEngines/Torque3D into Enumnanigans
2024-07-24 17:58:27 -05:00
Brian Roberts
7db28feb67
Merge pull request #1292 from Azaezel/alpha41/openALUpgrade
...
open al upgrade
2024-07-23 14:46:03 -05:00
marauder2k7
324acaf896
Update uuid.cpp
...
code review from Tron better method for uuid toString
2024-07-23 13:36:49 +01:00
marauder2k7
665fc092aa
Update uuid.cpp
...
remove dmalloc
2024-07-23 13:09:23 +01:00
marauder2k7
80a1f0a0c5
Update uuid.cpp
...
add a malloc to target to make sure it has the length to take the string
2024-07-23 08:07:54 +01:00
marauder2k7
0853748f12
Update uuid.cpp
...
2 pass format_token, 1st gets the length required second passes it to target.
2024-07-23 07:58:03 +01:00
marauder2k7
3e57c709d9
Update uuid.cpp
2024-07-23 01:33:26 +01:00
marauder2k7
b1e7b817d2
Update duDebugDrawTorque.cpp
2024-07-22 21:40:57 +01:00
marauder2k7
776a9b9024
Update particleEmitter.h
...
....how was this working before.....
2024-07-22 21:37:51 +01:00
marauder2k7
56a89ee0b0
Update consoleFunctions.cpp
2024-07-22 21:20:54 +01:00
marauder2k7
6807abc8b6
ID10T error
...
no default does not need case -_- id10t error, few other fixes
2024-07-22 21:12:48 +01:00
marauder2k7
a621cc5100
various warnings
...
warnings cleanup
2024-07-22 20:59:48 +01:00
AzaezelX
b12ece4627
from @marauder2k9-torque: remove typedefs as al.h now defines them, linux fix
2024-06-30 15:08:02 -05:00
marauder2k7
547b8c8c8c
Merge remote-tracking branch 'upstream/development' into PhysicsDiscovery-tests
2024-06-25 13:17:39 +01:00
marauder2k7
b0181cc56a
Update astNodes.cpp
...
missed naming
2024-06-18 15:23:52 +01:00
marauder2k7
fed83cdb8f
naming
...
change enum to OP_JMPIFNOTSTRING (same name as others doing similar for different types)
place case with other ifnot statements
2024-06-18 15:15:25 +01:00
marauder2k7
54d0da6690
Update stringFunctions.h
...
changes to dAtob from az
2024-06-18 15:10:24 +01:00
marauder2k7
0d4c335231
test
...
working test without scanstring changes
2024-06-16 23:05:42 +01:00
marauder2k7
d8411b4a58
Update console.h
...
case insensitive
2024-06-16 20:02:57 +01:00
marauder2k7
d6a79e4f5b
if statement
...
treat "true" as a bool in getInt check (inside if statements for strings)
no longer convert all "true" and "false" to ints
2024-06-16 20:01:47 +01:00
marauder2k7
e56f4cb6a6
if statements
...
Changed:
if check on vals now return true if the value has a string value
%val = "test me" if(%val) will now return true since %val is not null
Script side:
string checks for "true" and "false" will now be parsed as integer values of 1 and 0.
TEST VIGOUROUSLY
2024-06-16 15:04:20 +01:00
Brian Roberts
760c153232
Merge pull request #1288 from Azaezel/alpha41/posePoking
...
pickanimation filter fix, with docs
2024-06-15 14:30:52 -05:00
Brian Roberts
b2fad6e3b9
Merge pull request #1287 from Azaezel/alpha41/destructorDefines
...
handle missing virtual destructors
2024-06-15 14:30:40 -05:00
AzaezelX
7ac714606f
proper formulation
2024-06-11 16:08:07 -05:00
AzaezelX
61978fa4da
pickanimation filter fix, with docs
...
sorts the order of operations flaws clang was complaining about, with explainations on why
2024-06-11 15:21:24 -05:00
AzaezelX
a58f98167f
handle missing virtual destructors
...
clang translation: destructinplace needs to know what to erase.
2024-06-10 13:20:09 -05:00
AzaezelX
5c701fe09e
file write clarifications
...
handle clang complaints about hidden virtuals in the context of file writes that have thier own routes and I/O needs.
2024-06-10 13:15:27 -05:00
marauder2k7
1c43959c07
multiline eval support
2024-06-07 20:44:44 +01:00
marauder2k7
8140ed9b64
clear
...
clear lines, and dont try to print lines when there is no file.
2024-06-07 20:13:56 +01:00
AzaezelX
56e4484ff6
remove glowbin as it's own render pass
2024-05-30 17:29:42 -05:00
marauder2k7
79dfd14bea
Update sfxALBuffer.h
...
revert to head
2024-05-25 10:20:14 +01:00
marauder2k7
0d1dc234fa
Update sfxSndStream.cpp
...
we always want shorts
2024-05-25 10:04:51 +01:00
marauder2k7
e3d977b8e7
Update sfxALBuffer.h
...
mac dont like
2024-05-25 09:10:47 +01:00
marauder2k7
16ff27c6e6
Merge remote-tracking branch 'upstream/development' into sound-fix
2024-05-25 09:10:24 +01:00
marauder2k7
0ae0d633e9
Update sfxSndStream.cpp
2024-05-25 08:16:43 +01:00
marauder2k7
aa9cb63789
Update sfxSndStream.cpp
2024-05-24 17:18:35 +01:00
marauder2k7
de454dc793
Update sfxSndStream.cpp
...
revert vorbis back to 16bit add normalisation option.
2024-05-24 16:25:26 +01:00
marauder2k7
c28cedc2d8
32 bit float test
...
32 bit floating point sounds
2024-05-24 16:19:10 +01:00
marauder2k7
ebdc408385
Update sfxSndStream.cpp
...
streaming file fixes, also only wrap back around when we have read the whole file.
2024-05-24 15:11:18 +01:00
marauder2k7
bf34d3daa8
Update sfxSndStream.cpp
...
fix distortion issue on some sounds, if vorbis requires a scale set for float conversion
2024-05-24 14:12:01 +01:00
marauder2k7
482eb28ded
Update sfxSndStream.cpp
...
add different file type modes and reset stream after reading (torque still reads the full thing)
2024-05-24 14:00:21 +01:00
marauder2k7
b338458a1d
possible fix for torsion lineno
2024-05-24 09:48:42 +01:00
marauder2k7
25d6ee5372
backup
...
backup commit
2024-05-20 12:21:37 +01:00
marauder2k7
2d2d3c7560
PlaneConvex
...
Working example of a plane convex type, now groundplane does not need to create a box for its collisions.
2024-05-19 01:18:50 +01:00
marauder2k7
2132379b05
backwards compat
...
Changed: addCollisionDetail now has its fill mode at the end for easier backwards compat
2024-05-16 21:21:34 +01:00
marauder2k7
4b2165668f
moar fixes
...
Fixed: convex and shape nodes are now the same transform as the target nodes
Changed: addNode now has the target at the end of its call for backwards compat
Fixed: renameNode was overwriting addNode calls, should not have been so
2024-05-16 20:36:47 +01:00
marauder2k7
280102d565
Update tsMeshFit.cpp
...
update addCollisionDetail documentation
2024-05-16 08:18:17 +01:00