Konrad Gotfryd f77a18e0d2 Replace object's address format in getDebugInfo() 5 жил өмнө
..
test 1449c4df57 Add some tests for engineAPI and console 10 жил өмнө
CMDgram.y 407bbce509 Merging 8 жил өмнө
CMDscan.cpp 6b024b21bf As suggested, extract strlen calls from sizes into variables so it isn't called twice 7 жил өмнө
CMDscan.l 6b024b21bf As suggested, extract strlen calls from sizes into variables so it isn't called twice 7 жил өмнө
ICallMethod.h 38c8e52c1d Beginnings of the "pass everything using a native type wrapper" console code. 13 жил өмнө
SimXMLDocument.cpp 3c99ef73a9 Eliminate DefineConsoleMethod 7 жил өмнө
SimXMLDocument.h bb38a40bcb fixed lots of tabs and space 8 жил өмнө
arrayObject.cpp 970dd5c477 Reordering initialization methods #1912 8 жил өмнө
arrayObject.h bb38a40bcb fixed lots of tabs and space 8 жил өмнө
ast.h 7d889a9a56 ast shadowvar cleanup 7 жил өмнө
astAlloc.cpp 6b024b21bf As suggested, extract strlen calls from sizes into variables so it isn't called twice 7 жил өмнө
astNodes.cpp 7d889a9a56 ast shadowvar cleanup 7 жил өмнө
bison.bat 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
bison.simple 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
cmdgram.cpp 407bbce509 Merging 8 жил өмнө
cmdgram.h 407bbce509 Merging 8 жил өмнө
codeBlock.cpp 36db8eacc3 Merge pull request #2236 from Azaezel/memberMess 7 жил өмнө
codeBlock.h 407bbce509 Merging 8 жил өмнө
codeInterpreter.cpp 9cd149102d Merge pull request #2248 from lukaspj/new-cinterface 6 жил өмнө
codeInterpreter.h 407bbce509 Merging 8 жил өмнө
compiledEval.cpp ff9892c11e Use a circular buffer for getReturnBuffer because StringStack's would get clobbered too quickly 7 жил өмнө
compiler.cpp a94587af43 Use strncpy instead of strcpy because again, buffer overflows 7 жил өмнө
compiler.h 407bbce509 Merging 8 жил өмнө
console.cpp 9cd149102d Merge pull request #2248 from lukaspj/new-cinterface 6 жил өмнө
console.h 3a71c75596 Merge branch 'development' into EngineAPI-Refactor 6 жил өмнө
consoleDoc.cpp 3a71c75596 Merge branch 'development' into EngineAPI-Refactor 6 жил өмнө
consoleDoc.h 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
consoleFunctions.cpp 3a71c75596 Merge branch 'development' into EngineAPI-Refactor 6 жил өмнө
consoleFunctions.h 39d5563a8c Added type checking functions 10 жил өмнө
consoleInternal.cpp a94587af43 Use strncpy instead of strcpy because again, buffer overflows 7 жил өмнө
consoleInternal.h 407bbce509 Merging 8 жил өмнө
consoleLogger.cpp 3c99ef73a9 Eliminate DefineConsoleMethod 7 жил өмнө
consoleLogger.h 38c8e52c1d Beginnings of the "pass everything using a native type wrapper" console code. 13 жил өмнө
consoleObject.cpp ed10ce2511 A buffer overflow in enumerateConsoleClassesByCategory 7 жил өмнө
consoleObject.h 5bbda83669 Add Type information for Properties in EngineXMLExport 7 жил өмнө
consoleParser.cpp bb38a40bcb fixed lots of tabs and space 8 жил өмнө
consoleParser.h bb38a40bcb fixed lots of tabs and space 8 жил өмнө
consoleTypes.cpp 0801a3cca8 Implementation of sRGB image support. Overhauls the linearization setup to utilize the sRGB image types, as well as refactors the use of ColorF and ColorI to be properly internally consistent. ColorIs are used only for front-facing/editing/UI settings, and ColorFs, now renamed to LinearColorF to reduce confusion of purpose, are used for color info in the engine itself. This avoids confusing and expensive conversions back and forth between types and avoids botches with linearity. Majority work done by @rextimmy 8 жил өмнө
consoleTypes.h 7369b9feae Remove a now-unneeded fix for offsetof on new versions of Visual Studio. 7 жил өмнө
consoleXMLExport.cpp 5bde18143f Eliminate DefineConsoleFunction 7 жил өмнө
consoleXMLExport.h 4bc1491714 clang catch: garbage in line directives 9 жил өмнө
debugOutputConsumer.cpp 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
debugOutputConsumer.h 87283640b7 Removed the unneeded PPC And Altivec elements, and removed the LOCBUILD flag 8 жил өмнө
dynamicTypes.cpp fbfd3ed8ed clang: constructor initialization order 9 жил өмнө
dynamicTypes.h 7a3b40a86d Initial Implementation of the Taml, Asset and Modules systems. 10 жил өмнө
engineAPI.h 9291bc6105 Sqlite Console refactor, also rename param to make tooltip function more helpful 6 жил өмнө
engineDoc.cpp 21b82b737d shadowvar cleanup 7 жил өмнө
engineExports.cpp 970dd5c477 Reordering initialization methods #1912 8 жил өмнө
engineExports.h 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
engineFunctions.cpp fbfd3ed8ed clang: constructor initialization order 9 жил өмнө
engineFunctions.h a84145421f Fix EngineAPI xml generation, utilizing fixed_tuple for default args 7 жил өмнө
engineObject.cpp 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
engineObject.h 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
enginePrimitives.cpp 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
enginePrimitives.h 88106f9032 Fixed type inference for nulls in console functions 8 жил өмнө
engineStructs.cpp 0801a3cca8 Implementation of sRGB image support. Overhauls the linearization setup to utilize the sRGB image types, as well as refactors the use of ColorF and ColorI to be properly internally consistent. ColorIs are used only for front-facing/editing/UI settings, and ColorFs, now renamed to LinearColorF to reduce confusion of purpose, are used for color info in the engine itself. This avoids confusing and expensive conversions back and forth between types and avoids botches with linearity. Majority work done by @rextimmy 8 жил өмнө
engineStructs.h 0801a3cca8 Implementation of sRGB image support. Overhauls the linearization setup to utilize the sRGB image types, as well as refactors the use of ColorF and ColorI to be properly internally consistent. ColorIs are used only for front-facing/editing/UI settings, and ColorFs, now renamed to LinearColorF to reduce confusion of purpose, are used for color info in the engine itself. This avoids confusing and expensive conversions back and forth between types and avoids botches with linearity. Majority work done by @rextimmy 8 жил өмнө
engineTypeInfo.cpp fbfd3ed8ed clang: constructor initialization order 9 жил өмнө
engineTypeInfo.h 5bbda83669 Add Type information for Properties in EngineXMLExport 7 жил өмнө
engineTypes.cpp 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
engineTypes.h 6b7be51d61 Pass structs by value, not by reference, in EngineAPI. This simplifies call-layout through EngineAPI 7 жил өмнө
engineXMLExport.cpp 5bbda83669 Add Type information for Properties in EngineXMLExport 7 жил өмнө
fieldBrushObject.cpp 3a71c75596 Merge branch 'development' into EngineAPI-Refactor 6 жил өмнө
fieldBrushObject.h 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
fileSystemFunctions.cpp 6b024b21bf As suggested, extract strlen calls from sizes into variables so it isn't called twice 7 жил өмнө
fixedTuple.h a84145421f Fix EngineAPI xml generation, utilizing fixed_tuple for default args 7 жил өмнө
generateCompiler.bat 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
persistenceManager.cpp 3c99ef73a9 Eliminate DefineConsoleMethod 7 жил өмнө
persistenceManager.h 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
propertyParsing.cpp 0801a3cca8 Implementation of sRGB image support. Overhauls the linearization setup to utilize the sRGB image types, as well as refactors the use of ColorF and ColorI to be properly internally consistent. ColorIs are used only for front-facing/editing/UI settings, and ColorFs, now renamed to LinearColorF to reduce confusion of purpose, are used for color info in the engine itself. This avoids confusing and expensive conversions back and forth between types and avoids botches with linearity. Majority work done by @rextimmy 8 жил өмнө
propertyParsing.h 0801a3cca8 Implementation of sRGB image support. Overhauls the linearization setup to utilize the sRGB image types, as well as refactors the use of ColorF and ColorI to be properly internally consistent. ColorIs are used only for front-facing/editing/UI settings, and ColorFs, now renamed to LinearColorF to reduce confusion of purpose, are used for color info in the engine itself. This avoids confusing and expensive conversions back and forth between types and avoids botches with linearity. Majority work done by @rextimmy 8 жил өмнө
returnBuffer.cpp ff9892c11e Use a circular buffer for getReturnBuffer because StringStack's would get clobbered too quickly 7 жил өмнө
returnBuffer.h ff9892c11e Use a circular buffer for getReturnBuffer because StringStack's would get clobbered too quickly 7 жил өмнө
runtimeClassRep.cpp 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
runtimeClassRep.h 7a3b40a86d Initial Implementation of the Taml, Asset and Modules systems. 10 жил өмнө
scriptFilename.cpp 00758d380f Eliminate unnecessary uses of ConsoleFunction 7 жил өмнө
scriptFilename.h 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
scriptObjects.cpp 9b62afbe3f Cleans up a redundant include. 8 жил өмнө
scriptObjects.h b56f8674cd New ScriptTickObject 12 жил өмнө
sim.cpp bc435a3b33 Eliminate ConsoleFunction and ConsoleMethod, replace with DefineEngineStringlyVariadic 7 жил өмнө
sim.h 121d65215e Tweaks any enums that use uint_max values so that they have hard types to avoid any compiler kerfluffles with C++11 value narrowing, specifically pertaining to clang. 9 жил өмнө
simBase.h 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
simDatablock.cpp 3a71c75596 Merge branch 'development' into EngineAPI-Refactor 6 жил өмнө
simDatablock.h a5917ced16 substitution statements conformed to standard class:mVar standard 7 жил өмнө
simDictionary.cpp 886dcbaac5 variable naming cleanup due to locals overriding in multiple places. objectname to mObjectName+ getName() refs in dictionary. 7 жил өмнө
simDictionary.h bcc5459818 whitespace 8 жил өмнө
simEvents.cpp bcc5459818 whitespace 8 жил өмнө
simEvents.h 3f97c2cedd Fix building on GCC 10 жил өмнө
simFieldDictionary.cpp 28e509af1a Merge branch 'development' of https://github.com/GarageGames/Torque3D into memberMess 7 жил өмнө
simFieldDictionary.h b05691c6b5 roll back changes to simFieldDictionary as it doesn't want to play nice and causing corruption 8 жил өмнө
simManager.cpp 9298d889b3 simset::objectList to simset::mObjectList 7 жил өмнө
simObject.cpp f77a18e0d2 Replace object's address format in getDebugInfo() 5 жил өмнө
simObject.h 9cd149102d Merge pull request #2248 from lukaspj/new-cinterface 6 жил өмнө
simObjectList.cpp 491a7dcfdd tAlgorythm fed namespace T3D for better library interoperability. resulted in the need to specify usage in... a few places. 7 жил өмнө
simObjectList.h 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
simObjectMemento.cpp 6b024b21bf As suggested, extract strlen calls from sizes into variables so it isn't called twice 7 жил өмнө
simObjectMemento.h bcc5459818 whitespace 8 жил өмнө
simObjectRef.h 5ef130d581 Fixed some random Worder warnings 10 жил өмнө
simPersistID.cpp 970dd5c477 Reordering initialization methods #1912 8 жил өмнө
simPersistID.h 7dbfe6994d Engine directory for ticket #1 13 жил өмнө
simPersistSet.cpp 3c99ef73a9 Eliminate DefineConsoleMethod 7 жил өмнө
simPersistSet.h 38c8e52c1d Beginnings of the "pass everything using a native type wrapper" console code. 13 жил өмнө
simSerialize.cpp bcc5459818 whitespace 8 жил өмнө
simSet.cpp 3a71c75596 Merge branch 'development' into EngineAPI-Refactor 6 жил өмнө
simSet.h 59130078e2 Merge branch 'development' of https://github.com/GarageGames/Torque3D into memberMess 7 жил өмнө
stringStack.cpp 3650e9afa9 Move StringStack methods into the cpp file 7 жил өмнө
stringStack.h 3650e9afa9 Move StringStack methods into the cpp file 7 жил өмнө
telnetConsole.cpp 5bde18143f Eliminate DefineConsoleFunction 7 жил өмнө
telnetConsole.h 539efcb1e1 Input event changes 12 жил өмнө
telnetDebugger.cpp 5bde18143f Eliminate DefineConsoleFunction 7 жил өмнө
telnetDebugger.h b0fcc91058 Fix: removed 'virtual' for classes which doesn't have child. 11 жил өмнө
typeValidators.cpp bcc5459818 whitespace 8 жил өмнө
typeValidators.h 1a89d95919 exposes getters for typevalidators. 7 жил өмнө