Merge pull request #2287 from Azaezel/macUpdates2

corrects compilation errors on mac
This commit is contained in:
Areloch 2019-01-09 09:42:19 -06:00 committed by GitHub
commit 8633884145
3 changed files with 22 additions and 19 deletions

View file

@ -178,7 +178,7 @@ void GuiConvexEditorCtrl::setVisible( bool val )
AbstractClassRep* classRep = AbstractClassRep::findClassRep(mProxyObjects[i].targetObjectClass); AbstractClassRep* classRep = AbstractClassRep::findClassRep(mProxyObjects[i].targetObjectClass);
if (!classRep) if (!classRep)
{ {
Con::errorf("WorldEditor::createPolyhedralObject - No such class: %s", mProxyObjects[i].targetObjectClass); Con::errorf("WorldEditor::createPolyhedralObject - No such class: %s", mProxyObjects[i].targetObjectClass.c_str());
continue; continue;
} }
@ -2513,4 +2513,4 @@ if (convex)
DefineEngineMethod( GuiConvexEditorCtrl, splitSelectedFace, void, (), , "" ) DefineEngineMethod( GuiConvexEditorCtrl, splitSelectedFace, void, (), , "" )
{ {
object->splitSelectedFace(); object->splitSelectedFace();
} }

View file

@ -39,7 +39,7 @@
#import "platform/profiler.h" #import "platform/profiler.h"
#import "cinterface/c_controlInterface.h" #import "cinterface/c_controlInterface.h"
#import "core/volume.h" #import "core/volume.h"
#include "console/engineAPI.h"
//TODO: file io still needs some work... //TODO: file io still needs some work...
#define MAX_MAC_PATH_LONG 2048 #define MAX_MAC_PATH_LONG 2048
@ -992,25 +992,22 @@ bool Platform::fileTimeToString(FileTime * time, char * string, U32 strLen) { re
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
#if defined(TORQUE_DEBUG) #if defined(TORQUE_DEBUG)
ConsoleFunction(testHasSubdir,void,2,2,"tests platform::hasSubDirectory") { DefineEngineFunction(testHasSubdir,void, (String _dir),,"tests platform::hasSubDirectory") {
Con::printf("testing %s",(const char*)argv[1]);
Platform::addExcludedDirectory(".svn"); Platform::addExcludedDirectory(".svn");
if(Platform::hasSubDirectory(argv[1])) if(Platform::hasSubDirectory(_dir.c_str()))
Con::printf(" has subdir"); Con::printf(" has subdir");
else else
Con::printf(" does not have subdir"); Con::printf(" does not have subdir");
} }
ConsoleFunction(testDumpDirectories,void,4,4,"testDumpDirectories('path', int depth, bool noBasePath)") { DefineEngineFunction(testDumpDirectories,void,(String _path, S32 _depth, bool _noBasePath),,"testDumpDirectories('path', int depth, bool noBasePath)") {
Vector<StringTableEntry> paths; Vector<StringTableEntry> paths;
const S32 depth = dAtoi(argv[2]);
const bool noBasePath = dAtob(argv[3]);
Platform::addExcludedDirectory(".svn"); Platform::addExcludedDirectory(".svn");
Platform::dumpDirectories(argv[1], paths, depth, noBasePath); Platform::dumpDirectories(_path.c_str(), paths, _depth, _noBasePath);
Con::printf("Dumping directories starting from %s with depth %i", (const char*)argv[1],depth); Con::printf("Dumping directories starting from %s with depth %i", _path.c_str(), _depth);
for(Vector<StringTableEntry>::iterator itr = paths.begin(); itr != paths.end(); itr++) { for(Vector<StringTableEntry>::iterator itr = paths.begin(); itr != paths.end(); itr++) {
Con::printf(*itr); Con::printf(*itr);
@ -1018,14 +1015,13 @@ ConsoleFunction(testDumpDirectories,void,4,4,"testDumpDirectories('path', int de
} }
ConsoleFunction(testDumpPaths, void, 3, 3, "testDumpPaths('path', int depth)") DefineEngineFunction(testDumpPaths, void, (String _path, S32 _depth),, "testDumpPaths('path', int depth)")
{ {
Vector<Platform::FileInfo> files; Vector<Platform::FileInfo> files;
S32 depth = dAtoi(argv[2]);
Platform::addExcludedDirectory(".svn"); Platform::addExcludedDirectory(".svn");
Platform::dumpPath(argv[1], files, depth); Platform::dumpPath(_path.c_str(), files, _depth);
for(Vector<Platform::FileInfo>::iterator itr = files.begin(); itr != files.end(); itr++) { for(Vector<Platform::FileInfo>::iterator itr = files.begin(); itr != files.end(); itr++) {
Con::printf("%s/%s",itr->pFullPath, itr->pFileName); Con::printf("%s/%s",itr->pFullPath, itr->pFileName);
@ -1033,15 +1029,15 @@ ConsoleFunction(testDumpPaths, void, 3, 3, "testDumpPaths('path', int depth)")
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
ConsoleFunction(testFileTouch, bool , 2,2, "testFileTouch('path')") DefineEngineFunction(testFileTouch, bool , (String _path),, "testFileTouch('path')")
{ {
return dFileTouch(argv[1]); return dFileTouch(_path.c_str());
} }
ConsoleFunction(testGetFileTimes, bool, 2,2, "testGetFileTimes('path')") DefineEngineFunction(testGetFileTimes, bool, (String _path),, "testGetFileTimes('path')")
{ {
FileTime create, modify; FileTime create, modify;
bool ok = Platform::getFileTimes(argv[1], &create, &modify); bool ok = Platform::getFileTimes(_path.c_str(), &create, &modify);
Con::printf("%s Platform::getFileTimes %i, %i", ok ? "+OK" : "-FAIL", create, modify); Con::printf("%s Platform::getFileTimes %i, %i", ok ? "+OK" : "-FAIL", create, modify);
return ok; return ok;
} }

View file

@ -24,6 +24,7 @@
#import "console/console.h" #import "console/console.h"
#import "math/mMath.h" #import "math/mMath.h"
#import "core/strings/stringFunctions.h" #import "core/strings/stringFunctions.h"
#include "console/engineAPI.h"
extern void mInstallLibrary_C(); extern void mInstallLibrary_C();
extern void mInstallLibrary_Vec(); extern void mInstallLibrary_Vec();
@ -51,7 +52,13 @@ void Platform::setMathControlStateKnown()
} }
//-------------------------------------- //--------------------------------------
ConsoleFunction( MathInit, void, 1, 10, "(DETECT|C|SSE)") DefineEngineStringlyVariadicFunction( mathInit, void, 1, 10, "( ... )"
"@brief Install the math library with specified extensions.\n\n"
"Possible parameters are:\n\n"
" - 'DETECT' Autodetect math lib settings.\n\n"
" - 'C' Enable the C math routines. C routines are always enabled.\n\n"
" - 'SSE' Enable SSE math routines.\n\n"
"@ingroup Math")
{ {
U32 properties = CPU_PROP_C; // C entensions are always used U32 properties = CPU_PROP_C; // C entensions are always used