1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#pragma once
#include "StarCelestialDatabase.hpp"
namespace Star {
STAR_CLASS(CelestialDatabase);
// Functions for generating and drawing worlds from a celestial database.
// Guards against drawing unloaded celestial objects, will return empty if no
// information is returned from the celestial database.
//
// Drawing methods return the stack of images to draw and the scale to draw
// them at.
class CelestialGraphics {
public:
// Some static versions of drawing functions are given that do not require an
// active CelestialDatabasePtr to draw.
static List<pair<String, float>> drawSystemPlanetaryObject(CelestialParameters const& celestialParameters);
static List<pair<String, float>> drawSystemCentralBody(CelestialParameters const& celestialParameters);
// Specify the shadowing parameters in order to use the shadowing
// information from that body instead of the primary one.
static List<pair<String, float>> drawWorld(
CelestialParameters const& celestialParameters, Maybe<CelestialParameters> const& shadowingParameters = {});
static List<pair<String, String>> worldHorizonImages(CelestialParameters const& celestialParameters);
static int worldRadialPosition(CelestialParameters const& celestialParameters);
// Each orbiting body will occupy a unique orbital slot, but to give
// graphical diversity, will also fit into exactly one radial slot for
// display purposes. The range of radial numbers is [0, RadialPosiitons)
static int planetRadialPositions();
static int satelliteRadialPositions();
static List<pair<String, float>> drawSystemTwinkle(CelestialDatabasePtr celestialDatabase, CelestialCoordinate const& system, double twinkleTime);
// Returns the small graphic for the given planetary object appropriate for a
// system-level view.
static List<pair<String, float>> drawSystemPlanetaryObject(CelestialDatabasePtr celestialDatabase, CelestialCoordinate const& coordinate);
static List<pair<String, float>> drawSystemCentralBody(CelestialDatabasePtr celestialDatabase, CelestialCoordinate const& coordinate);
// Returns the graphics appropriate to draw an entire world (planetary object
// or satellite object) in a map view. Shadows the satellite the same as
// its parent planetary object.
static List<pair<String, float>> drawWorld(CelestialDatabasePtr celestialDatabase, CelestialCoordinate const& coordinate);
// Draw all of the left and right image pairs for all the layers for the
// world horizon.
static List<pair<String, String>> worldHorizonImages(CelestialDatabasePtr celestialDatabase, CelestialCoordinate const& coordinate);
static int worldRadialPosition(CelestialDatabasePtr celestialDatabase, CelestialCoordinate const& coordinate);
private:
};
}
|