rotationmanager.cpp
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:1k
- // rotationmanager.cpp
- //
- // Copyright (C) 2006 Chris Laurel <claurel@shatters.net>
- //
- // This program is free software; you can redistribute it and/or
- // modify it under the terms of the GNU General Public License
- // as published by the Free Software Foundation; either version 2
- // of the License, or (at your option) any later version.
- #include <iostream>
- #include <fstream>
- #include "celestia.h"
- #include <celutil/debug.h>
- #include "samporient.h"
- #include "rotationmanager.h"
- using namespace std;
- static RotationModelManager* rotationModelManager = NULL;
- RotationModelManager* GetRotationModelManager()
- {
- if (rotationModelManager == NULL)
- rotationModelManager = new RotationModelManager("data");
- return rotationModelManager;
- }
- string RotationModelInfo::resolve(const string& baseDir)
- {
- if (!path.empty())
- {
- string filename = path + "/data/" + source;
- ifstream in(filename.c_str());
- if (in.good())
- return filename;
- }
- return baseDir + "/" + source;
- }
- RotationModel* RotationModelInfo::load(const string& filename)
- {
- DPRINTF(1, "Loading rotation model: %sn", filename.c_str());
- return LoadSampledOrientation(filename);
- }