I have compiled the Celestia source code on my computer using Visual C++ Express Edition.
The compile went without errors but did have two warnings.
c:\program files\celestiacode\celestia\inc\libjpeg\jmorecfg.h(215) : warning C4005: 'FAR' : macro redefinition
C:\Program Files\Microsoft SDKs\Windows\v6.0A\\include\windef.h(146) : see previous definition of 'FAR'
When I run the program it loads fine but I cannot change the texture resolution, it only displays the low resolution.
Could the warning above cause this problem or did I do something else wrong?
Built Celestia but no texture resolution
Re: Built Celestia but no texture resolution
Texture resolution now is selected in the Render menu.
It is one of the values recorded when Celestia exits and reused when Celestia starts.
Celestia r4551 resolution selection works fine for me under Windows.
The FAR redefinition is not a problem.
It is one of the values recorded when Celestia exits and reused when Celestia starts.
Celestia r4551 resolution selection works fine for me under Windows.
The FAR redefinition is not a problem.
Selden
Re: Built Celestia but no texture resolution
OK, I see it now
Thank you, I am so used to using r,R that I did not even think to look elsewhere.
By the way is there a good description/guide to to Celestia source code that would help me sort through all the files?
Thank you, I am so used to using r,R that I did not even think to look elsewhere.
By the way is there a good description/guide to to Celestia source code that would help me sort through all the files?
Re: Built Celestia but no texture resolution
bjsmith2 wrote:OK, I see it now
Thank you, I am so used to using r,R that I did not even think to look elsewhere.
By the way is there a good description/guide to to Celestia source code that would help me sort through all the files?
There's an old description on SourceForge which might help.
It hasn't been kept up to date, though.
http://celestia.svn.sourceforge.net/vie ... iew=markup
s.
Selden
Re: Built Celestia but no texture resolution
Ho ho!
I was just about to report a bug on the disappearing of the r/R shortcut.
Is it really lost in space or is there a chance to rescue it ?
I was just about to report a bug on the disappearing of the r/R shortcut.
Is it really lost in space or is there a chance to rescue it ?
Re: Built Celestia but no texture resolution
My understanding is that the r/R shortcuts are planned to be reused for something else.
Another consideration is that many people have gotten burned by having made a typo which switches to low resolution without them being aware of it, and then complaining because Celestia always shows very low resolution images.
Another consideration is that many people have gotten burned by having made a typo which switches to low resolution without them being aware of it, and then complaining because Celestia always shows very low resolution images.
Selden
Re: Built Celestia but no texture resolution
Ok!
For me it is not a real problem. Just to know for a next translation of the Help Menu.
In the same vein, quid of the “+” shortcut witch switches from “limit of knowledge” to “normal” textures. It works perfectly in the English version but it seems buggy in the localized ones?
For me it is not a real problem. Just to know for a next translation of the Help Menu.
In the same vein, quid of the “+” shortcut witch switches from “limit of knowledge” to “normal” textures. It works perfectly in the English version but it seems buggy in the localized ones?
-
- Developer
- Posts: 1356
- Joined: 07.01.2005
- With us: 19 years 10 months
- Location: Nancy, France
Re: Built Celestia but no texture resolution
Jo?l,jogad wrote:In the same vein, quid of the “+” shortcut witch switches from “limit of knowledge” to “normal” textures. It works perfectly in the English version but it seems buggy in the localized ones?
I can confirm this bug.
You can fix it by removing the gettext macro _(...) which is inappropriately applied to "limit of knowledge" in celestiacore.cpp, line 1813.
> Change from:
Code: Select all
observer->setDisplayedSurface(_("limit of knowledge"));
to:
Code: Select all
observer->setDisplayedSurface("limit of knowledge");
I'll check in the fix soon.
@+
Vincent
Celestia Qt4 SVN / Celestia 1.6.1 + Lua Edu Tools v1.2
GeForce 8600 GT 1024MB / AMD Athlon 64 Dual Core / 4Go DDR2 / XP SP3
Vincent
Celestia Qt4 SVN / Celestia 1.6.1 + Lua Edu Tools v1.2
GeForce 8600 GT 1024MB / AMD Athlon 64 Dual Core / 4Go DDR2 / XP SP3