2013-08-09 06:57:18 +02:00
# include "lc_global.h"
# include <stdio.h>
# include "lc_application.h"
# include "lc_library.h"
# include "lc_profile.h"
# include "project.h"
2013-08-16 03:25:51 +02:00
# include "lc_mainwindow.h"
2017-12-11 03:12:31 +01:00
# include "lc_qpreferencesdialog.h"
2017-11-25 03:19:29 +01:00
# include "lc_partselectionwidget.h"
2013-08-09 06:57:18 +02:00
# include "lc_shortcuts.h"
2017-06-20 05:03:49 +02:00
# include "view.h"
2013-08-09 06:57:18 +02:00
2017-12-03 04:42:42 +01:00
lcApplication * gApplication ;
2013-08-09 06:57:18 +02:00
2014-02-10 01:13:41 +01:00
void lcPreferences : : LoadDefaults ( )
{
2014-10-05 07:21:51 +02:00
mFixedAxes = lcGetProfileInt ( LC_PROFILE_FIXED_AXES ) ;
2014-02-10 01:13:41 +01:00
mMouseSensitivity = lcGetProfileInt ( LC_PROFILE_MOUSE_SENSITIVITY ) ;
2017-08-25 21:57:14 +02:00
mShadingMode = ( lcShadingMode ) lcGetProfileInt ( LC_PROFILE_SHADING_MODE ) ;
2014-02-10 01:13:41 +01:00
mDrawAxes = lcGetProfileInt ( LC_PROFILE_DRAW_AXES ) ;
mDrawEdgeLines = lcGetProfileInt ( LC_PROFILE_DRAW_EDGE_LINES ) ;
mLineWidth = lcGetProfileFloat ( LC_PROFILE_LINE_WIDTH ) ;
mDrawGridStuds = lcGetProfileInt ( LC_PROFILE_GRID_STUDS ) ;
mGridStudColor = lcGetProfileInt ( LC_PROFILE_GRID_STUD_COLOR ) ;
mDrawGridLines = lcGetProfileInt ( LC_PROFILE_GRID_LINES ) ;
mGridLineSpacing = lcGetProfileInt ( LC_PROFILE_GRID_LINE_SPACING ) ;
mGridLineColor = lcGetProfileInt ( LC_PROFILE_GRID_LINE_COLOR ) ;
2018-10-29 01:59:01 +01:00
mViewSphereLocation = ( lcViewSphereLocation ) lcGetProfileInt ( LC_PROFILE_VIEW_SPHERE_LOCATION ) ;
mViewSphereSize = lcGetProfileInt ( LC_PROFILE_VIEW_SPHERE_SIZE ) ;
2019-01-20 20:59:18 +01:00
mViewSphereColor = lcGetProfileInt ( LC_PROFILE_VIEW_SPHERE_COLOR ) ;
mViewSphereTextColor = lcGetProfileInt ( LC_PROFILE_VIEW_SPHERE_TEXT_COLOR ) ;
mViewSphereHighlightColor = lcGetProfileInt ( LC_PROFILE_VIEW_SPHERE_HIGHLIGHT_COLOR ) ;
2014-02-10 01:13:41 +01:00
}
void lcPreferences : : SaveDefaults ( )
{
2014-10-05 07:21:51 +02:00
lcSetProfileInt ( LC_PROFILE_FIXED_AXES , mFixedAxes ) ;
2014-02-10 01:13:41 +01:00
lcSetProfileInt ( LC_PROFILE_MOUSE_SENSITIVITY , mMouseSensitivity ) ;
2017-08-25 21:57:14 +02:00
lcSetProfileInt ( LC_PROFILE_SHADING_MODE , mShadingMode ) ;
2014-02-10 01:13:41 +01:00
lcSetProfileInt ( LC_PROFILE_DRAW_AXES , mDrawAxes ) ;
lcSetProfileInt ( LC_PROFILE_DRAW_EDGE_LINES , mDrawEdgeLines ) ;
lcSetProfileFloat ( LC_PROFILE_LINE_WIDTH , mLineWidth ) ;
lcSetProfileInt ( LC_PROFILE_GRID_STUDS , mDrawGridStuds ) ;
lcSetProfileInt ( LC_PROFILE_GRID_STUD_COLOR , mGridStudColor ) ;
lcSetProfileInt ( LC_PROFILE_GRID_LINES , mDrawGridLines ) ;
lcSetProfileInt ( LC_PROFILE_GRID_LINE_SPACING , mGridLineSpacing ) ;
lcSetProfileInt ( LC_PROFILE_GRID_LINE_COLOR , mGridLineColor ) ;
2018-10-29 01:59:01 +01:00
lcSetProfileInt ( LC_PROFILE_VIEW_SPHERE_LOCATION , ( int ) mViewSphereLocation ) ;
lcSetProfileInt ( LC_PROFILE_VIEW_SPHERE_SIZE , mViewSphereSize ) ;
2019-01-20 20:59:18 +01:00
lcSetProfileInt ( LC_PROFILE_VIEW_SPHERE_COLOR , mViewSphereColor ) ;
lcSetProfileInt ( LC_PROFILE_VIEW_SPHERE_TEXT_COLOR , mViewSphereTextColor ) ;
lcSetProfileInt ( LC_PROFILE_VIEW_SPHERE_HIGHLIGHT_COLOR , mViewSphereHighlightColor ) ;
2014-02-10 01:13:41 +01:00
}
2017-12-10 19:20:31 +01:00
lcApplication : : lcApplication ( int & Argc , char * * Argv )
2017-12-03 04:42:42 +01:00
: QApplication ( Argc , Argv )
2013-08-09 06:57:18 +02:00
{
2017-12-03 04:42:42 +01:00
# if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
setApplicationDisplayName ( " LeoCAD " ) ;
# endif
setOrganizationDomain ( " leocad.org " ) ;
setOrganizationName ( " LeoCAD Software " ) ;
setApplicationName ( " LeoCAD " ) ;
setApplicationVersion ( LC_VERSION_TEXT ) ;
gApplication = this ;
2017-04-14 02:26:40 +02:00
mProject = nullptr ;
mLibrary = nullptr ;
2014-02-10 01:13:41 +01:00
mPreferences . LoadDefaults ( ) ;
2013-08-09 06:57:18 +02:00
}
lcApplication : : ~ lcApplication ( )
{
2015-01-08 06:40:22 +01:00
delete mProject ;
delete mLibrary ;
2017-12-03 04:42:42 +01:00
gApplication = nullptr ;
2013-08-09 06:57:18 +02:00
}
2018-01-07 00:01:04 +01:00
void lcApplication : : SaveTabLayout ( ) const
{
if ( ! mProject | | mProject - > GetFileName ( ) . isEmpty ( ) )
return ;
QSettings Settings ;
QByteArray TabLayout = gMainWindow - > GetTabLayout ( ) ;
Settings . setValue ( GetTabLayoutKey ( ) , TabLayout ) ;
}
QString lcApplication : : GetTabLayoutKey ( ) const
{
if ( mProject )
{
QString FileName = mProject - > GetFileName ( ) ;
if ( ! FileName . isEmpty ( ) )
{
FileName . replace ( ' \\ ' , ' ? ' ) ;
FileName . replace ( ' / ' , ' ? ' ) ;
return QString ( " TabLayouts/%1 " ) . arg ( FileName ) ;
}
}
return QString ( ) ;
}
2014-12-04 02:47:28 +01:00
void lcApplication : : SetProject ( Project * Project )
{
2018-01-07 00:01:04 +01:00
SaveTabLayout ( ) ;
2018-11-05 23:37:01 +01:00
gMainWindow - > RemoveAllModelTabs ( ) ;
2014-12-04 02:47:28 +01:00
delete mProject ;
mProject = Project ;
2015-03-14 20:07:07 +01:00
Project - > SetActiveModel ( 0 ) ;
2015-01-07 17:52:42 +01:00
lcGetPiecesLibrary ( ) - > RemoveTemporaryPieces ( ) ;
2018-01-07 00:01:04 +01:00
if ( mProject & & ! mProject - > GetFileName ( ) . isEmpty ( ) )
{
QSettings Settings ;
QByteArray TabLayout = Settings . value ( GetTabLayoutKey ( ) ) . toByteArray ( ) ;
gMainWindow - > RestoreTabLayout ( TabLayout ) ;
}
2014-12-04 02:47:28 +01:00
}
2014-12-16 00:55:17 +01:00
void lcApplication : : SetClipboard ( const QByteArray & Clipboard )
2013-08-09 06:57:18 +02:00
{
mClipboard = Clipboard ;
2014-12-16 00:55:17 +01:00
gMainWindow - > UpdatePaste ( ! mClipboard . isEmpty ( ) ) ;
2013-08-09 06:57:18 +02:00
}
2015-01-31 21:38:53 +01:00
void lcApplication : : ExportClipboard ( const QByteArray & Clipboard )
{
QMimeData * MimeData = new QMimeData ( ) ;
MimeData - > setData ( " application/vnd.leocad-clipboard " , Clipboard ) ;
QApplication : : clipboard ( ) - > setMimeData ( MimeData ) ;
SetClipboard ( Clipboard ) ;
}
2017-11-25 05:00:16 +01:00
bool lcApplication : : LoadPartsLibrary ( const QList < QPair < QString , bool > > & LibraryPaths , bool OnlyUsePaths , bool ShowProgress )
2013-08-09 06:57:18 +02:00
{
2017-04-14 02:26:40 +02:00
if ( mLibrary = = nullptr )
2014-02-10 01:13:41 +01:00
mLibrary = new lcPiecesLibrary ( ) ;
2013-08-09 06:57:18 +02:00
2017-11-25 03:19:29 +01:00
if ( ! OnlyUsePaths )
{
char * EnvPath = getenv ( " LEOCAD_LIB " ) ;
2014-09-13 00:47:08 +02:00
2017-11-25 03:19:29 +01:00
if ( EnvPath & & EnvPath [ 0 ] )
2017-11-25 05:00:16 +01:00
return mLibrary - > Load ( EnvPath , ShowProgress ) ;
2013-08-09 06:57:18 +02:00
2017-11-25 03:19:29 +01:00
QString CustomPath = lcGetProfileString ( LC_PROFILE_PARTS_LIBRARY ) ;
2013-08-09 06:57:18 +02:00
2017-11-25 03:19:29 +01:00
if ( ! CustomPath . isEmpty ( ) )
2017-11-25 05:00:16 +01:00
return mLibrary - > Load ( CustomPath , ShowProgress ) ;
2017-11-25 03:19:29 +01:00
}
2013-08-09 06:57:18 +02:00
2017-08-29 04:13:17 +02:00
for ( const QPair < QString , bool > & LibraryPathEntry : LibraryPaths )
2014-09-13 00:47:08 +02:00
{
2017-11-25 05:00:16 +01:00
if ( mLibrary - > Load ( LibraryPathEntry . first , ShowProgress ) )
2014-09-13 00:47:08 +02:00
{
2017-08-29 04:13:17 +02:00
if ( LibraryPathEntry . second )
mLibrary - > SetOfficialPieces ( ) ;
2014-09-13 00:47:08 +02:00
return true ;
2017-08-29 04:13:17 +02:00
}
2014-09-13 00:47:08 +02:00
}
2013-08-09 06:57:18 +02:00
return false ;
}
2017-12-03 04:42:42 +01:00
bool lcApplication : : Initialize ( QList < QPair < QString , bool > > & LibraryPaths , bool & ShowWindow )
2013-08-09 06:57:18 +02:00
{
2017-11-25 03:19:29 +01:00
bool OnlyUseLibraryPaths = false ;
2013-08-09 06:57:18 +02:00
bool SaveImage = false ;
2015-01-23 02:58:33 +01:00
bool SaveWavefront = false ;
2015-03-27 21:20:12 +01:00
bool Save3DS = false ;
2017-08-26 01:10:06 +02:00
bool SaveCOLLADA = false ;
2017-12-11 20:14:37 +01:00
bool SaveHTML = false ;
2017-12-14 02:36:35 +01:00
bool SetCameraAngles = false ;
2017-06-21 07:46:52 +02:00
bool Orthographic = false ;
2017-06-20 20:32:48 +02:00
bool ImageHighlight = false ;
2013-08-09 06:57:18 +02:00
int ImageWidth = lcGetProfileInt ( LC_PROFILE_IMAGE_WIDTH ) ;
int ImageHeight = lcGetProfileInt ( LC_PROFILE_IMAGE_HEIGHT ) ;
2017-12-03 04:42:42 +01:00
int ImageStart = 0 ;
int ImageEnd = 0 ;
2017-12-13 07:47:03 +01:00
int PartImagesWidth = - 1 ;
int PartImagesHeight = - 1 ;
2017-12-14 02:36:35 +01:00
float CameraLatitude , CameraLongitude ;
2017-12-03 04:42:42 +01:00
QString ImageName ;
QString ModelName ;
QString CameraName ;
QString ViewpointName ;
QString ProjectName ;
QString SaveWavefrontName ;
QString Save3DSName ;
QString SaveCOLLADAName ;
2017-12-11 20:14:37 +01:00
QString SaveHTMLName ;
2017-12-03 04:42:42 +01:00
QStringList Arguments = arguments ( ) ;
const int NumArguments = Arguments . size ( ) ;
for ( int ArgIdx = 1 ; ArgIdx < NumArguments ; ArgIdx + + )
2013-08-09 06:57:18 +02:00
{
2017-12-03 04:42:42 +01:00
const QString & Param = Arguments [ ArgIdx ] ;
2013-08-09 06:57:18 +02:00
2017-12-03 04:42:42 +01:00
if ( Param [ 0 ] ! = ' - ' )
2013-08-09 06:57:18 +02:00
{
2017-12-03 04:42:42 +01:00
ProjectName = Param ;
continue ;
}
2013-08-09 06:57:18 +02:00
2017-12-03 04:42:42 +01:00
auto ParseString = [ & ArgIdx , & Arguments , NumArguments ] ( QString & Value , bool Required )
{
if ( ArgIdx < NumArguments - 1 & & Arguments [ ArgIdx + 1 ] [ 0 ] ! = ' - ' )
2015-01-23 02:58:33 +01:00
{
2017-12-03 04:42:42 +01:00
ArgIdx + + ;
Value = Arguments [ ArgIdx ] ;
2015-03-27 21:20:12 +01:00
}
2017-12-03 04:42:42 +01:00
else if ( Required )
printf ( " Not enough parameters for the '%s' argument. \n " , Arguments [ ArgIdx ] . toLatin1 ( ) . constData ( ) ) ;
} ;
2015-03-27 21:20:12 +01:00
2017-12-03 04:42:42 +01:00
auto ParseInteger = [ & ArgIdx , & Arguments , NumArguments ] ( int & Value )
{
if ( ArgIdx < NumArguments - 1 & & Arguments [ ArgIdx + 1 ] [ 0 ] ! = ' - ' )
2017-08-26 01:10:06 +02:00
{
2017-12-03 04:42:42 +01:00
bool Ok = false ;
ArgIdx + + ;
int NewValue = Arguments [ ArgIdx ] . toInt ( & Ok ) ;
2017-08-26 01:10:06 +02:00
2017-12-03 04:42:42 +01:00
if ( Ok )
Value = NewValue ;
else
printf ( " Invalid value specified for the '%s' argument. \n " , Arguments [ ArgIdx - 1 ] . toLatin1 ( ) . constData ( ) ) ;
2017-08-26 01:10:06 +02:00
}
2017-12-03 04:42:42 +01:00
else
printf ( " Not enough parameters for the '%s' argument. \n " , Arguments [ ArgIdx ] . toLatin1 ( ) . constData ( ) ) ;
} ;
2013-08-09 06:57:18 +02:00
2018-07-22 00:33:15 +02:00
auto ParseFloat = [ & ArgIdx , & Arguments , NumArguments ] ( float & Value )
{
if ( ArgIdx < NumArguments - 1 & & Arguments [ ArgIdx + 1 ] [ 0 ] ! = ' - ' )
{
bool Ok = false ;
ArgIdx + + ;
int NewValue = Arguments [ ArgIdx ] . toFloat ( & Ok ) ;
if ( Ok )
Value = NewValue ;
else
printf ( " Invalid value specified for the '%s' argument. \n " , Arguments [ ArgIdx - 1 ] . toLatin1 ( ) . constData ( ) ) ;
}
else
printf ( " Not enough parameters for the '%s' argument. \n " , Arguments [ ArgIdx ] . toLatin1 ( ) . constData ( ) ) ;
} ;
2017-12-14 02:36:35 +01:00
auto ParseVector2 = [ & ArgIdx , & Arguments , NumArguments ] ( float & Value1 , float & Value2 )
{
if ( ArgIdx < NumArguments - 2 & & Arguments [ ArgIdx + 1 ] [ 0 ] ! = ' - ' & & Arguments [ ArgIdx + 2 ] [ 0 ] ! = ' - ' )
{
bool Ok1 = false , Ok2 = false ;
ArgIdx + + ;
float NewValue1 = Arguments [ ArgIdx ] . toFloat ( & Ok1 ) ;
ArgIdx + + ;
float NewValue2 = Arguments [ ArgIdx ] . toFloat ( & Ok2 ) ;
if ( Ok1 & & Ok2 )
{
Value1 = NewValue1 ;
Value2 = NewValue2 ;
return true ;
}
else
printf ( " Invalid value specified for the '%s' argument. \n " , Arguments [ ArgIdx - 2 ] . toLatin1 ( ) . constData ( ) ) ;
}
else
printf ( " Not enough parameters for the '%s' argument. \n " , Arguments [ ArgIdx ] . toLatin1 ( ) . constData ( ) ) ;
return false ;
} ;
2017-12-03 04:42:42 +01:00
if ( Param = = QLatin1String ( " -l " ) | | Param = = QLatin1String ( " --libpath " ) )
{
QString LibPath ;
ParseString ( LibPath , true ) ;
if ( ! LibPath . isEmpty ( ) )
2013-08-09 06:57:18 +02:00
{
2017-12-03 04:42:42 +01:00
LibraryPaths . clear ( ) ;
LibraryPaths + = qMakePair < QString , bool > ( LibPath , false ) ;
OnlyUseLibraryPaths = true ;
2013-08-09 06:57:18 +02:00
}
}
2017-12-03 04:42:42 +01:00
else if ( Param = = QLatin1String ( " -i " ) | | Param = = QLatin1String ( " --image " ) )
2013-08-09 06:57:18 +02:00
{
2017-12-03 04:42:42 +01:00
SaveImage = true ;
ParseString ( ImageName , false ) ;
}
else if ( Param = = QLatin1String ( " -w " ) | | Param = = QLatin1String ( " --width " ) )
ParseInteger ( ImageWidth ) ;
else if ( Param = = QLatin1String ( " -h " ) | | Param = = QLatin1String ( " --height " ) )
ParseInteger ( ImageHeight ) ;
else if ( Param = = QLatin1String ( " -f " ) | | Param = = QLatin1String ( " --from " ) )
ParseInteger ( ImageStart ) ;
else if ( Param = = QLatin1String ( " -t " ) | | Param = = QLatin1String ( " --to " ) )
ParseInteger ( ImageEnd ) ;
2017-12-14 02:36:35 +01:00
else if ( Param = = QLatin1String ( " -s " ) | | Param = = QLatin1String ( " --submodel " ) )
2017-12-03 04:42:42 +01:00
ParseString ( ModelName , true ) ;
else if ( Param = = QLatin1String ( " -c " ) | | Param = = QLatin1String ( " --camera " ) )
ParseString ( CameraName , true ) ;
else if ( Param = = QLatin1String ( " --viewpoint " ) )
ParseString ( ViewpointName , true ) ;
2017-12-14 02:36:35 +01:00
else if ( Param = = QLatin1String ( " --camera-angles " ) )
SetCameraAngles = ParseVector2 ( CameraLatitude , CameraLongitude ) ;
2017-12-03 04:42:42 +01:00
else if ( Param = = QLatin1String ( " --orthographic " ) )
Orthographic = true ;
else if ( Param = = QLatin1String ( " --highlight " ) )
ImageHighlight = true ;
2018-07-22 00:33:15 +02:00
else if ( Param = = QLatin1String ( " --shading " ) )
{
QString ShadingString ;
ParseString ( ShadingString , true ) ;
if ( ShadingString = = QLatin1String ( " wireframe " ) )
mPreferences . mShadingMode = LC_SHADING_WIREFRAME ;
else if ( ShadingString = = QLatin1String ( " flat " ) )
mPreferences . mShadingMode = LC_SHADING_FLAT ;
else if ( ShadingString = = QLatin1String ( " default " ) )
mPreferences . mShadingMode = LC_SHADING_DEFAULT_LIGHTS ;
else if ( ShadingString = = QLatin1String ( " full " ) )
mPreferences . mShadingMode = LC_SHADING_FULL ;
}
else if ( Param = = QLatin1String ( " --line-width " ) )
ParseFloat ( mPreferences . mLineWidth ) ;
2017-12-03 04:42:42 +01:00
else if ( Param = = QLatin1String ( " -obj " ) | | Param = = QLatin1String ( " --export-wavefront " ) )
{
SaveWavefront = true ;
ParseString ( SaveWavefrontName , false ) ;
}
else if ( Param = = QLatin1String ( " -3ds " ) | | Param = = QLatin1String ( " --export-3ds " ) )
{
Save3DS = true ;
ParseString ( Save3DSName , false ) ;
}
else if ( Param = = QLatin1String ( " -dae " ) | | Param = = QLatin1String ( " --export-collada " ) )
{
SaveCOLLADA = true ;
ParseString ( SaveCOLLADAName , false ) ;
2013-08-09 06:57:18 +02:00
}
2017-12-11 20:14:37 +01:00
else if ( Param = = QLatin1String ( " -html " ) | | Param = = QLatin1String ( " --export-html " ) )
{
SaveHTML = true ;
ParseString ( SaveHTMLName , false ) ;
}
2017-12-13 07:47:03 +01:00
else if ( Param = = QLatin1String ( " --html-parts-width " ) )
ParseInteger ( PartImagesWidth ) ;
else if ( Param = = QLatin1String ( " --html-parts-height " ) )
ParseInteger ( PartImagesHeight ) ;
2017-12-03 04:42:42 +01:00
else if ( Param = = QLatin1String ( " -v " ) | | Param = = QLatin1String ( " --version " ) )
{
printf ( " LeoCAD Version " LC_VERSION_TEXT " \n " ) ;
printf ( " Compiled " __DATE__ " \n " ) ;
ShowWindow = false ;
return true ;
}
else if ( Param = = QLatin1String ( " -? " ) | | Param = = QLatin1String ( " --help " ) )
{
printf ( " Usage: leocad [options] [file] \n " ) ;
printf ( " [options] can be: \n " ) ;
2017-12-14 02:36:35 +01:00
printf ( " -l, --libpath <path>: Set the Parts Library location to path. \n " ) ;
printf ( " -i, --image <outfile.ext>: Save a picture in the format specified by ext. \n " ) ;
printf ( " -w, --width <width>: Set the picture width. \n " ) ;
printf ( " -h, --height <height>: Set the picture height. \n " ) ;
printf ( " -f, --from <time>: Set the first step to save pictures. \n " ) ;
printf ( " -t, --to <time>: Set the last step to save pictures. \n " ) ;
printf ( " -s, --submodel <submodel>: Set the active submodel. \n " ) ;
printf ( " -c, --camera <camera>: Set the active camera. \n " ) ;
printf ( " --viewpoint <front|back|left|right|top|bottom|home>: Set the viewpoint. \n " ) ;
printf ( " --camera-angles <latitude> <longitude>: Set the camera angles in degrees around the model. \n " ) ;
2017-12-03 04:42:42 +01:00
printf ( " --orthographic: Make the view orthographic. \n " ) ;
printf ( " --highlight: Highlight pieces in the steps they appear. \n " ) ;
2018-07-22 00:33:15 +02:00
printf ( " --shading <wireframe|flat|default|full>: Select shading mode for rendering. \n " ) ;
printf ( " --line-width <width>: Set the with of the edge lines. \n " ) ;
2017-12-14 02:36:35 +01:00
printf ( " -obj, --export-wavefront <outfile.obj>: Export the model to Wavefront OBJ format. \n " ) ;
printf ( " -3ds, --export-3ds <outfile.3ds>: Export the model to 3D Studio 3DS format. \n " ) ;
printf ( " -dae, --export-collada <outfile.dae>: Export the model to COLLADA DAE format. \n " ) ;
printf ( " -html, --export-html <folder>: Create an HTML page for the model. \n " ) ;
printf ( " --html-parts-width <width>: Set the HTML part pictures width. \n " ) ;
printf ( " --html-parts-height <height>: Set the HTML part pictures height. \n " ) ;
2017-12-03 04:42:42 +01:00
printf ( " -v, --version: Output version information and exit. \n " ) ;
2017-12-14 02:36:35 +01:00
printf ( " -?, --help: Display this help message and exit. \n " ) ;
2017-12-03 04:42:42 +01:00
printf ( " \n " ) ;
ShowWindow = false ;
return true ;
}
else
printf ( " Unknown parameter: '%s' \n " , Param . toLatin1 ( ) . constData ( ) ) ;
2013-08-09 06:57:18 +02:00
}
2015-01-24 00:18:32 +01:00
gMainWindow = new lcMainWindow ( ) ;
2015-01-24 03:12:24 +01:00
lcLoadDefaultKeyboardShortcuts ( ) ;
2016-04-23 02:17:33 +02:00
lcLoadDefaultMouseShortcuts ( ) ;
2015-01-24 00:18:32 +01:00
2017-12-11 20:14:37 +01:00
ShowWindow = ! SaveImage & & ! SaveWavefront & & ! Save3DS & & ! SaveCOLLADA & & ! SaveHTML ;
2016-12-07 18:24:47 +01:00
2017-11-25 05:00:16 +01:00
if ( ! LoadPartsLibrary ( LibraryPaths , OnlyUseLibraryPaths , ShowWindow ) )
2013-08-09 06:57:18 +02:00
{
2016-12-07 18:24:47 +01:00
QString Message ;
2013-08-09 06:57:18 +02:00
2014-09-11 21:55:34 +02:00
if ( mLibrary - > LoadBuiltinPieces ( ) )
2018-03-22 00:47:00 +01:00
Message = tr ( " LeoCAD could not find a compatible Parts Library so only a small number of parts will be available. \n \n Please visit https://www.leocad.org for information on how to download and install a library. " ) ;
2014-09-11 21:55:34 +02:00
else
2018-03-22 00:47:00 +01:00
Message = tr ( " LeoCAD could not load Parts Library. \n \n Please visit https://www.leocad.org for information on how to download and install a library. " ) ;
2016-12-07 18:24:47 +01:00
if ( ShowWindow )
QMessageBox : : information ( gMainWindow , tr ( " LeoCAD " ) , Message ) ;
else
2016-12-16 21:52:36 +01:00
fprintf ( stderr , " %s " , Message . toLatin1 ( ) . constData ( ) ) ;
2013-08-09 06:57:18 +02:00
}
2015-01-26 00:04:39 +01:00
gMainWindow - > CreateWidgets ( ) ;
2015-01-24 00:18:32 +01:00
2015-01-23 19:45:58 +01:00
Project * NewProject = new Project ( ) ;
SetProject ( NewProject ) ;
2013-08-09 06:57:18 +02:00
2017-12-03 04:42:42 +01:00
if ( ! ProjectName . isEmpty ( ) & & gMainWindow - > OpenProject ( ProjectName ) )
2013-08-09 06:57:18 +02:00
{
2017-12-03 04:42:42 +01:00
if ( ! ModelName . isEmpty ( ) )
2017-12-27 22:55:37 +01:00
mProject - > SetActiveModel ( ModelName ) ;
2017-06-20 05:03:49 +02:00
2017-12-14 02:36:35 +01:00
View * ActiveView = gMainWindow - > GetActiveView ( ) ;
2017-12-03 04:42:42 +01:00
if ( ! CameraName . isEmpty ( ) )
2017-06-21 07:46:52 +02:00
{
2017-12-14 02:36:35 +01:00
ActiveView - > SetCamera ( CameraName . toLatin1 ( ) ) ; // todo: qstring
if ( ! ViewpointName . isEmpty ( ) )
printf ( " Warning: --viewpoint is ignored when --camera is set. \n " ) ;
if ( Orthographic )
printf ( " Warning: --orthographic is ignored when --camera is set. \n " ) ;
if ( SetCameraAngles )
printf ( " Warning: --camera-angles is ignored when --camera is set. \n " ) ;
2017-06-21 07:46:52 +02:00
}
else
{
2017-12-03 04:42:42 +01:00
if ( ! ViewpointName . isEmpty ( ) )
2017-06-21 07:46:52 +02:00
{
2017-12-03 04:42:42 +01:00
if ( ViewpointName = = QLatin1String ( " front " ) )
2017-12-14 02:36:35 +01:00
ActiveView - > SetViewpoint ( LC_VIEWPOINT_FRONT ) ;
2017-12-03 04:42:42 +01:00
else if ( ViewpointName = = QLatin1String ( " back " ) )
2017-12-14 02:36:35 +01:00
ActiveView - > SetViewpoint ( LC_VIEWPOINT_BACK ) ;
2017-12-03 04:42:42 +01:00
else if ( ViewpointName = = QLatin1String ( " top " ) )
2017-12-14 02:36:35 +01:00
ActiveView - > SetViewpoint ( LC_VIEWPOINT_TOP ) ;
2017-12-03 04:42:42 +01:00
else if ( ViewpointName = = QLatin1String ( " bottom " ) )
2017-12-14 02:36:35 +01:00
ActiveView - > SetViewpoint ( LC_VIEWPOINT_BOTTOM ) ;
2017-12-03 04:42:42 +01:00
else if ( ViewpointName = = QLatin1String ( " left " ) )
2017-12-14 02:36:35 +01:00
ActiveView - > SetViewpoint ( LC_VIEWPOINT_LEFT ) ;
2017-12-03 04:42:42 +01:00
else if ( ViewpointName = = QLatin1String ( " right " ) )
2017-12-14 02:36:35 +01:00
ActiveView - > SetViewpoint ( LC_VIEWPOINT_RIGHT ) ;
2017-12-03 04:42:42 +01:00
else if ( ViewpointName = = QLatin1String ( " home " ) )
2017-12-14 02:36:35 +01:00
ActiveView - > SetViewpoint ( LC_VIEWPOINT_HOME ) ;
2017-06-21 07:46:52 +02:00
else
2017-12-03 04:42:42 +01:00
printf ( " Unknown viewpoint: '%s' \n " , ViewpointName . toLatin1 ( ) . constData ( ) ) ;
2017-12-14 02:36:35 +01:00
if ( SetCameraAngles )
printf ( " Warning: --camera-angles is ignored when --viewpoint is set. \n " ) ;
2017-06-21 07:46:52 +02:00
}
2017-12-14 02:36:35 +01:00
else if ( SetCameraAngles )
ActiveView - > SetCameraAngles ( CameraLatitude , CameraLongitude ) ;
ActiveView - > SetProjection ( Orthographic ) ;
2017-06-21 07:46:52 +02:00
}
2017-06-20 05:03:49 +02:00
2015-01-23 02:58:33 +01:00
if ( SaveImage )
{
2018-07-08 00:26:36 +02:00
lcModel * ActiveModel ;
if ( ModelName . isEmpty ( ) )
ActiveModel = mProject - > GetMainModel ( ) ;
else
ActiveModel = mProject - > GetActiveModel ( ) ;
2018-04-18 01:08:29 +02:00
2017-12-27 22:55:37 +01:00
if ( ImageName . isEmpty ( ) )
2018-04-15 03:27:16 +02:00
ImageName = mProject - > GetImageFileName ( true ) ;
2013-08-09 06:57:18 +02:00
2015-01-23 02:58:33 +01:00
if ( ImageEnd < ImageStart )
ImageEnd = ImageStart ;
else if ( ImageStart > ImageEnd )
ImageStart = ImageEnd ;
if ( ( ImageStart = = 0 ) & & ( ImageEnd = = 0 ) )
2018-04-18 01:08:29 +02:00
ImageStart = ImageEnd = ActiveModel - > GetCurrentStep ( ) ;
2015-01-23 02:58:33 +01:00
else if ( ( ImageStart = = 0 ) & & ( ImageEnd ! = 0 ) )
ImageStart = ImageEnd ;
else if ( ( ImageStart ! = 0 ) & & ( ImageEnd = = 0 ) )
ImageEnd = ImageStart ;
2013-08-09 06:57:18 +02:00
2015-01-23 02:58:33 +01:00
if ( ImageStart > 255 )
ImageStart = 255 ;
2013-08-09 06:57:18 +02:00
2015-01-23 02:58:33 +01:00
if ( ImageEnd > 255 )
ImageEnd = 255 ;
2013-08-09 06:57:18 +02:00
2015-01-23 02:58:33 +01:00
QString Frame ;
2013-08-09 06:57:18 +02:00
2015-01-23 02:58:33 +01:00
if ( ImageStart ! = ImageEnd )
{
2017-12-27 22:55:37 +01:00
QString Extension = QFileInfo ( ImageName ) . suffix ( ) ;
Frame = ImageName . left ( ImageName . length ( ) - Extension . length ( ) - 1 ) + QLatin1String ( " %1. " ) + Extension ;
2015-01-23 02:58:33 +01:00
}
else
2017-12-27 22:55:37 +01:00
Frame = ImageName ;
2013-08-09 06:57:18 +02:00
2018-04-18 01:08:29 +02:00
ActiveModel - > SaveStepImages ( Frame , ImageStart ! = ImageEnd , CameraName = = nullptr , ImageHighlight , ImageWidth , ImageHeight , ImageStart , ImageEnd ) ;
2015-01-23 02:58:33 +01:00
}
2013-08-09 06:57:18 +02:00
2015-01-23 02:58:33 +01:00
if ( SaveWavefront )
2013-08-09 06:57:18 +02:00
{
2015-01-23 02:58:33 +01:00
QString FileName ;
2017-12-03 04:42:42 +01:00
if ( ! SaveWavefrontName . isEmpty ( ) )
2015-03-27 21:20:12 +01:00
FileName = SaveWavefrontName ;
2015-01-23 02:58:33 +01:00
else
FileName = ProjectName ;
2013-08-09 06:57:18 +02:00
2015-01-23 02:58:33 +01:00
QString Extension = QFileInfo ( FileName ) . suffix ( ) . toLower ( ) ;
2013-08-09 06:57:18 +02:00
2015-01-23 02:58:33 +01:00
if ( Extension . isEmpty ( ) )
{
FileName + = " .obj " ;
}
else if ( Extension ! = " obj " )
{
FileName = FileName . left ( FileName . length ( ) - Extension . length ( ) - 1 ) ;
FileName + = " .obj " ;
}
mProject - > ExportWavefront ( FileName ) ;
}
2015-03-27 21:20:12 +01:00
if ( Save3DS )
{
QString FileName ;
2017-12-03 04:42:42 +01:00
if ( ! Save3DSName . isEmpty ( ) )
2015-03-27 21:20:12 +01:00
FileName = Save3DSName ;
else
FileName = ProjectName ;
QString Extension = QFileInfo ( FileName ) . suffix ( ) . toLower ( ) ;
if ( Extension . isEmpty ( ) )
{
FileName + = " .3ds " ;
}
else if ( Extension ! = " 3ds " )
{
FileName = FileName . left ( FileName . length ( ) - Extension . length ( ) - 1 ) ;
FileName + = " .3ds " ;
}
mProject - > Export3DStudio ( FileName ) ;
}
2017-08-26 01:10:06 +02:00
if ( SaveCOLLADA )
{
QString FileName ;
2017-12-03 04:42:42 +01:00
if ( ! SaveCOLLADAName . isEmpty ( ) )
2017-08-26 01:10:06 +02:00
FileName = SaveCOLLADAName ;
else
FileName = ProjectName ;
QString Extension = QFileInfo ( FileName ) . suffix ( ) . toLower ( ) ;
if ( Extension . isEmpty ( ) )
{
FileName + = " .dae " ;
}
else if ( Extension ! = " dae " )
{
FileName = FileName . left ( FileName . length ( ) - Extension . length ( ) - 1 ) ;
FileName + = " .dae " ;
}
mProject - > ExportCOLLADA ( FileName ) ;
}
2017-12-11 20:14:37 +01:00
if ( SaveHTML )
{
lcHTMLExportOptions Options ( mProject ) ;
if ( ! SaveHTMLName . isEmpty ( ) )
Options . PathName = SaveHTMLName ;
2017-12-13 07:47:03 +01:00
if ( PartImagesWidth > 0 )
Options . PartImagesWidth = PartImagesWidth ;
if ( PartImagesHeight > 0 )
Options . PartImagesHeight = PartImagesHeight ;
2017-12-11 20:14:37 +01:00
mProject - > ExportHTML ( Options ) ;
}
2013-08-09 06:57:18 +02:00
}
2015-01-23 02:58:33 +01:00
2017-11-25 03:19:29 +01:00
if ( ShowWindow )
{
gMainWindow - > SetColorIndex ( lcGetColorIndex ( 4 ) ) ;
gMainWindow - > GetPartSelectionWidget ( ) - > SetDefaultPart ( ) ;
gMainWindow - > UpdateRecentFiles ( ) ;
gMainWindow - > show ( ) ;
}
2013-08-09 06:57:18 +02:00
return true ;
}
void lcApplication : : Shutdown ( )
{
2014-02-10 01:13:41 +01:00
delete mLibrary ;
2017-04-14 02:26:40 +02:00
mLibrary = nullptr ;
2013-08-09 06:57:18 +02:00
}
2014-02-10 01:13:41 +01:00
void lcApplication : : ShowPreferencesDialog ( )
{
lcPreferencesDialogOptions Options ;
int CurrentAASamples = lcGetProfileInt ( LC_PROFILE_ANTIALIASING_SAMPLES ) ;
Options . Preferences = mPreferences ;
2015-01-31 22:44:57 +01:00
Options . DefaultAuthor = lcGetProfileString ( LC_PROFILE_DEFAULT_AUTHOR_NAME ) ;
Options . LibraryPath = lcGetProfileString ( LC_PROFILE_PARTS_LIBRARY ) ;
Options . POVRayPath = lcGetProfileString ( LC_PROFILE_POVRAY_PATH ) ;
Options . LGEOPath = lcGetProfileString ( LC_PROFILE_POVRAY_LGEO_PATH ) ;
2014-02-10 01:13:41 +01:00
Options . CheckForUpdates = lcGetProfileInt ( LC_PROFILE_CHECK_UPDATES ) ;
Options . AASamples = CurrentAASamples ;
Options . Categories = gCategories ;
Options . CategoriesModified = false ;
Options . CategoriesDefault = false ;
Options . KeyboardShortcuts = gKeyboardShortcuts ;
2016-04-25 07:26:34 +02:00
Options . KeyboardShortcutsModified = false ;
Options . KeyboardShortcutsDefault = false ;
Options . MouseShortcuts = gMouseShortcuts ;
Options . MouseShortcutsModified = false ;
Options . MouseShortcutsDefault = false ;
2014-02-10 01:13:41 +01:00
2017-12-11 03:12:31 +01:00
lcQPreferencesDialog Dialog ( gMainWindow , & Options ) ;
if ( Dialog . exec ( ) ! = QDialog : : Accepted )
2014-02-10 01:13:41 +01:00
return ;
2015-01-31 22:44:57 +01:00
bool LibraryChanged = Options . LibraryPath ! = lcGetProfileString ( LC_PROFILE_PARTS_LIBRARY ) ;
2014-02-10 01:13:41 +01:00
bool AAChanged = CurrentAASamples ! = Options . AASamples ;
mPreferences = Options . Preferences ;
mPreferences . SaveDefaults ( ) ;
lcSetProfileString ( LC_PROFILE_DEFAULT_AUTHOR_NAME , Options . DefaultAuthor ) ;
lcSetProfileString ( LC_PROFILE_PARTS_LIBRARY , Options . LibraryPath ) ;
lcSetProfileString ( LC_PROFILE_POVRAY_PATH , Options . POVRayPath ) ;
lcSetProfileString ( LC_PROFILE_POVRAY_LGEO_PATH , Options . LGEOPath ) ;
lcSetProfileInt ( LC_PROFILE_CHECK_UPDATES , Options . CheckForUpdates ) ;
lcSetProfileInt ( LC_PROFILE_ANTIALIASING_SAMPLES , Options . AASamples ) ;
if ( LibraryChanged & & AAChanged )
2015-01-30 17:30:13 +01:00
QMessageBox : : information ( gMainWindow , tr ( " LeoCAD " ) , tr ( " Parts library and Anti-aliasing changes will only take effect the next time you start LeoCAD. " ) ) ;
2014-02-10 01:13:41 +01:00
else if ( LibraryChanged )
2015-01-30 17:30:13 +01:00
QMessageBox : : information ( gMainWindow , tr ( " LeoCAD " ) , tr ( " Parts library changes will only take effect the next time you start LeoCAD. " ) ) ;
2014-02-10 01:13:41 +01:00
else if ( AAChanged )
2015-01-30 17:30:13 +01:00
QMessageBox : : information ( gMainWindow , tr ( " LeoCAD " ) , tr ( " Anti-aliasing changes will only take effect the next time you start LeoCAD. " ) ) ;
2014-02-10 01:13:41 +01:00
if ( Options . CategoriesModified )
{
if ( Options . CategoriesDefault )
lcResetDefaultCategories ( ) ;
else
{
gCategories = Options . Categories ;
lcSaveDefaultCategories ( ) ;
}
gMainWindow - > UpdateCategories ( ) ;
}
2016-04-25 07:26:34 +02:00
if ( Options . KeyboardShortcutsModified )
2014-02-10 01:13:41 +01:00
{
2016-04-25 07:26:34 +02:00
if ( Options . KeyboardShortcutsDefault )
2014-02-10 01:13:41 +01:00
lcResetDefaultKeyboardShortcuts ( ) ;
else
{
gKeyboardShortcuts = Options . KeyboardShortcuts ;
lcSaveDefaultKeyboardShortcuts ( ) ;
}
gMainWindow - > UpdateShortcuts ( ) ;
}
2016-04-25 07:26:34 +02:00
if ( Options . MouseShortcutsModified )
{
if ( Options . MouseShortcutsDefault )
lcResetDefaultMouseShortcuts ( ) ;
else
{
gMouseShortcuts = Options . MouseShortcuts ;
lcSaveDefaultMouseShortcuts ( ) ;
}
}
2014-02-10 01:13:41 +01:00
// TODO: printing preferences
/*
strcpy ( opts . strFooter , m_strFooter ) ;
strcpy ( opts . strHeader , m_strHeader ) ;
*/
2017-09-13 23:21:53 +02:00
gMainWindow - > SetShadingMode ( Options . Preferences . mShadingMode ) ;
2014-05-03 23:16:48 +02:00
gMainWindow - > UpdateAllViews ( ) ;
2014-03-07 03:39:28 +01:00
}