~xalioth/stellarium/fix-fonts-gltex-fab

« back to all changes in this revision

Viewing changes to src/core/StelCore.cpp

  • Committer: matthewg42
  • Date: 2008-11-27 14:36:21 UTC
  • Revision ID: vcs-imports@canonical.com-20081127143621-fbasu1vl30kq2edv
refactor: MovementMgr -> StelMovementMgr

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include "StelUtils.hpp"
27
27
#include "GeodesicGrid.hpp"
28
28
#include "SolarSystem.hpp"
29
 
#include "MovementMgr.hpp"
 
29
#include "StelMovementMgr.hpp"
30
30
#include "StelModuleMgr.hpp"
31
31
#include "Planet.hpp"
32
32
#include "StelPainter.hpp"
41
41
StelCore::StelCore() : geodesicGrid(NULL), currentProjectionType(ProjectionStereographic)
42
42
{
43
43
        toneConverter = new ToneReproducer();
44
 
        movementMgr = new MovementMgr(this);
 
44
        movementMgr = new StelMovementMgr(this);
45
45
        movementMgr->init();
46
46
        StelApp::getInstance().getModuleMgr().registerModule(movementMgr);      
47
47
        
170
170
        return prj;
171
171
}
172
172
 
173
 
// Get an instance of projector using the current display parameters from Navigation, MovementMgr
 
173
// Get an instance of projector using the current display parameters from Navigation, StelMovementMgr
174
174
// and using the given modelview matrix
175
175
const StelProjectorP StelCore::getProjection(const Mat4d& modelViewMat, ProjectionType projType) const
176
176
{
210
210
        return prj;
211
211
}
212
212
                
213
 
// Get an instance of projector using the current display parameters from Navigation, MovementMgr
 
213
// Get an instance of projector using the current display parameters from Navigation, StelMovementMgr
214
214
const StelProjectorP StelCore::getProjection(FrameType frameType, ProjectionType projType) const
215
215
{
216
216