New 64 bit 1.7 version suggestions and bugs
- Chuft-Captain
- Posts: 1779
- Joined: 18.12.2005
- With us: 18 years 11 months
Thanks Alexell,
Good to know that. Will that BETA be 32bit/64bit or both?
Cheers
CC
Good to know that. Will that BETA be 32bit/64bit or both?
Cheers
CC
"Is a planetary surface the right place for an expanding technological civilization?"
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
- Chuft-Captain
- Posts: 1779
- Joined: 18.12.2005
- With us: 18 years 11 months
Great! Look forward to seeing it.
"Is a planetary surface the right place for an expanding technological civilization?"
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
celestia-1.7.0-x64-25.11.17 (using dlls provided by Janus) does not show which databases are being loaded. It provides only a percentage value. This is not appropriate.
It is very important that the full paths of Celestia's database files and associated errors be shown in all three of the "obvious" places while they are being loaded:
1. in the initial popup window
2. in the terminal window when Celestia is started from the command line
3. in the log shown when one types a tilde
so that bugs in those files can be located and fixed.
It is very important that the full paths of Celestia's database files and associated errors be shown in all three of the "obvious" places while they are being loaded:
1. in the initial popup window
2. in the terminal window when Celestia is started from the command line
3. in the log shown when one types a tilde
so that bugs in those files can be located and fixed.
Selden
- Chuft-Captain
- Posts: 1779
- Joined: 18.12.2005
- With us: 18 years 11 months
Absolutely agree with Selden.
I for one will not be using this executable if loading information is obfuscated.
I for one will not be using this executable if loading information is obfuscated.
"Is a planetary surface the right place for an expanding technological civilization?"
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
celestia-1.7.0-x64-25.11.17 (using dlls provided by Janus) ignores command line options.
It should complain about unrecognized options and should recognize those options known to Celestia v1.6
For example, when using a Windows 7 terminal window, typing the command
celestia-1.7.0-x64-25.11.17.exe -help
generates no terminal output. It should list all of the available command-line options, if only because "-help" is not recognized.
It should complain about unrecognized options and should recognize those options known to Celestia v1.6
For example, when using a Windows 7 terminal window, typing the command
celestia-1.7.0-x64-25.11.17.exe -help
generates no terminal output. It should list all of the available command-line options, if only because "-help" is not recognized.
Selden
@selden
The following is from /src/celestia/qt/qtmain.cpp
This is the complete command line parsing routine for the QT version of Celestia.
The one for straight VS is basically the same.
I checked my archives, and while several versions have use '--help', none have a complete printout of options that I could find.
Janus.
The following is from /src/celestia/qt/qtmain.cpp
This is the complete command line parsing routine for the QT version of Celestia.
The one for straight VS is basically the same.
I checked my archives, and while several versions have use '--help', none have a complete printout of options that I could find.
Code: Select all
bool ParseCommandLine()
{
QStringList args = QCoreApplication::arguments();
int i = 1;
while (i < args.size())
{
bool isLastArg = (i == args.size() - 1);
#if 0
if (strcmp(argv[i], "--verbose") == 0)
{
SetDebugVerbosity(1);
}
else
#endif
if (args.at(i) == "--fullscreen")
{
startFullscreen = true;
}
else if (args.at(i) == "--once")
{
runOnce = true;
}
else if (args.at(i) == "--dir")
{
if (isLastArg)
{
CommandLineError("Directory expected after --dir");
return false;
}
i++;
startDirectory = args.at(i);
}
else if (args.at(i) == "--conf")
{
if (isLastArg)
{
CommandLineError("Configuration file name expected after --conf");
return false;
}
i++;
configFileName = args.at(i);
useAlternateConfigFile = true;
}
else if (args.at(i) == "--extrasdir")
{
if (isLastArg)
{
CommandLineError("Directory expected after --extrasdir");
return false;
}
i++;
extrasDirectories.push_back(args.at(i));
}
else if (args.at(i) == "-u" || args.at(i) == "--url")
{
if (isLastArg)
{
CommandLineError("URL expected after --url");
return false;
}
i++;
startURL = args.at(i);
}
else if (args.at(i) == "-s" || args.at(i) == "--nosplash")
{
skipSplashScreen = true;
}
else
{
QString buf ="Invalid command line option " + args.at(i);
CommandLineError(buf.toUtf8().data());
return false;
}
i++;
}
return true;
}
Janus.
- Chuft-Captain
- Posts: 1779
- Joined: 18.12.2005
- With us: 18 years 11 months
Janus,
I suspect the second part of Selden's post:
I may be wrong, but AFAIK Celestia (certainly 1.6.x versions) in this circumstance, has never done anything more than present a popup box with something like:
CC
I suspect the second part of Selden's post:
is a suggestion, rather than a bug report.Selden wrote:It should list all of the available command-line options, if only because "-help" is not recognized.
I may be wrong, but AFAIK Celestia (certainly 1.6.x versions) in this circumstance, has never done anything more than present a popup box with something like:
... however it is a very good suggestion by Selden, as it's analogous to standard DOS functionality of presenting options when "/?" is appended to a command, but would require some new code to be written to replace popups with the terminal output Selden suggests.Celestia wrote:"Invalid command line option --help"
CC
"Is a planetary surface the right place for an expanding technological civilization?"
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
I had not realized Celestia did not do that.
Since it did everything else so well, I assumed it did that as well.
Shouldn't be to hard to add.
Maybe even take a page from a program I ran into in house at a customer.
They had a utility that in addition to listing out command line options, would create a temp dir text file and launch it in the default txt editor as a guide.
Really useful, especially since it had a LOT! of options.
How about that idea here, and maybe add stuff like being able to automatically run a script, record a session, or go to a named thing.
Janus.
Since it did everything else so well, I assumed it did that as well.
Shouldn't be to hard to add.
Maybe even take a page from a program I ran into in house at a customer.
They had a utility that in addition to listing out command line options, would create a temp dir text file and launch it in the default txt editor as a guide.
Really useful, especially since it had a LOT! of options.
How about that idea here, and maybe add stuff like being able to automatically run a script, record a session, or go to a named thing.
Janus.
- Alexell
- Site Admin
- Posts: 303
- Joined: 07.10.2010
- Age: 30
- With us: 14 years 1 month
- Location: Moscow, Russia
- Contact:
selden, The process of loading in percent on a splash screen is a temporary fictitious decision. In the original QT code - there was no splash screen.
Added after 4 minutes 8 seconds:
Other errors written in this topic in the future will be corrected.
I remind you that the developers of Celestia did only an experimental version using the QT framework.
There is still a lot of work to get everything working.
Added after 4 minutes 8 seconds:
Other errors written in this topic in the future will be corrected.
I remind you that the developers of Celestia did only an experimental version using the QT framework.
There is still a lot of work to get everything working.
Admin of celestia.space
PC: Intel Core i7-8700 @ 3.20GHz, SSD, 16 Gb RAM, NVIDIA GeForce GTX 1080, Creative Sound Blaster ZxR. Windows 10 x64.
Phone: iPhone Xs 256 Gb. iOS 14.
PC: Intel Core i7-8700 @ 3.20GHz, SSD, 16 Gb RAM, NVIDIA GeForce GTX 1080, Creative Sound Blaster ZxR. Windows 10 x64.
Phone: iPhone Xs 256 Gb. iOS 14.
- Alexell
- Site Admin
- Posts: 303
- Joined: 07.10.2010
- Age: 30
- With us: 14 years 1 month
- Location: Moscow, Russia
- Contact:
john71, Version 1.6.2 will not. There will be a 1.7.0 version right away
But maybe in December we will not see it, because we do not have time to fix some problems.
But maybe in December we will not see it, because we do not have time to fix some problems.
Admin of celestia.space
PC: Intel Core i7-8700 @ 3.20GHz, SSD, 16 Gb RAM, NVIDIA GeForce GTX 1080, Creative Sound Blaster ZxR. Windows 10 x64.
Phone: iPhone Xs 256 Gb. iOS 14.
PC: Intel Core i7-8700 @ 3.20GHz, SSD, 16 Gb RAM, NVIDIA GeForce GTX 1080, Creative Sound Blaster ZxR. Windows 10 x64.
Phone: iPhone Xs 256 Gb. iOS 14.
- John Van Vliet
- Posts: 2944
- Joined: 28.08.2002
- With us: 22 years 2 months
@John Van Vliet
The main code base does compile with Mingw with very few tweaks, which I have already done in mine.
However, there are not yet mingw libs for the support libraries, thus no linking.
I have some done, but not all.
As for QT5, both Alexell's code base and my own private branch compile with QT5 just fine.
He uses VS2017, I use VS2013.
He uses QT5.9.2, I use QT 5.4/5.6/5.8/5.9, though I am not a fan of QT.
Both compile in x86 & x64 versions.
He is integrating QT into the main program itself in his branch, I am not.
The issue of warnings with 64 bit has to do with size_t conversion issues.
In many places in Celestia INT is used, which has some issues in the 32 vs 64 bit code wars.
There is a LOT! of work needed to get away from types that define their size, and to convert to ones that do not.
Such as switching from returning int/uint to size_t, and variable types within routines as well.
In my own branch I am working with Mingw530_x86 from QT creator, and an x64 version of it I located as well.
I have posted the sources of the support libs on my site with sln/vcxproj files set for VS2013 in the IDE.
I am building bat files for mingw to create libs from them as well.
As I have said, I am not a real C/C++ programmer.
So it is slow going for me, as I am doing this around my regular work.
I have also managed to create a completely statically linked version of Celstiaa in x86 & x64 both, that does not require or even use VS redists.
This is not feasible with QT however, it will always require the dozen or so support DLLs.
Janus.
The main code base does compile with Mingw with very few tweaks, which I have already done in mine.
However, there are not yet mingw libs for the support libraries, thus no linking.
I have some done, but not all.
As for QT5, both Alexell's code base and my own private branch compile with QT5 just fine.
He uses VS2017, I use VS2013.
He uses QT5.9.2, I use QT 5.4/5.6/5.8/5.9, though I am not a fan of QT.
Both compile in x86 & x64 versions.
He is integrating QT into the main program itself in his branch, I am not.
The issue of warnings with 64 bit has to do with size_t conversion issues.
In many places in Celestia INT is used, which has some issues in the 32 vs 64 bit code wars.
There is a LOT! of work needed to get away from types that define their size, and to convert to ones that do not.
Such as switching from returning int/uint to size_t, and variable types within routines as well.
In my own branch I am working with Mingw530_x86 from QT creator, and an x64 version of it I located as well.
I have posted the sources of the support libs on my site with sln/vcxproj files set for VS2013 in the IDE.
I am building bat files for mingw to create libs from them as well.
As I have said, I am not a real C/C++ programmer.
So it is slow going for me, as I am doing this around my regular work.
I have also managed to create a completely statically linked version of Celstiaa in x86 & x64 both, that does not require or even use VS redists.
This is not feasible with QT however, it will always require the dozen or so support DLLs.
Janus.