summaryrefslogtreecommitdiff
path: root/src/uqm/planets/sundata.h
blob: 6d7888e32b0159043d75212432b97c473543f046 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//Copyright Paul Reiche, Fred Ford. 1992-2002

/*
 *  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.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#ifndef UQM_PLANETS_SUNDATA_H_
#define UQM_PLANETS_SUNDATA_H_

#include "plandata.h"
#include "libs/compiler.h"

#if defined(__cplusplus)
extern "C" {
#endif

/*------------------------------ Global Data ------------------------------ */

#define NUMBER_OF_SUN_SIZES (SUPER_GIANT_STAR - DWARF_STAR + 1)

#define DWARF_ENERGY 1
#define GIANT_ENERGY 5
#define SUPERGIANT_ENERGY 20

typedef struct
{
	BYTE StarSize;
	BYTE StarIntensity;
	UWORD StarEnergy;

	PLANET_INFO PlanetInfo;
} SYSTEM_INFO;

#define GENERATE_ALL  ((COUNT)~0)
		
extern COUNT GenerateMineralDeposits (const SYSTEM_INFO *, COUNT whichDeposit,
		NODE_INFO *info);
extern COUNT GenerateLifeForms (const SYSTEM_INFO *, COUNT whichLife,
		NODE_INFO *info);
extern void GenerateRandomLocation (POINT *loc);
extern COUNT GenerateRandomNodes (const SYSTEM_INFO *, COUNT scan, COUNT numNodes,
		COUNT type, COUNT whichNode, NODE_INFO *info);
// Generate lifeforms from a preset lifeTypes[] array
extern COUNT GeneratePresetLife (const SYSTEM_INFO *,
		const SBYTE *lifeTypes, COUNT whichLife, NODE_INFO *info);

#define DWARF_ELEMENT_DENSITY  1
#define GIANT_ELEMENT_DENSITY 3
#define SUPERGIANT_ELEMENT_DENSITY 8

#define MAX_ELEMENT_DENSITY ((MAX_ELEMENT_UNITS * SUPERGIANT_ELEMENT_DENSITY) << 1)

extern void DoPlanetaryAnalysis (SYSTEM_INFO *SysInfoPtr,
		PLANET_DESC *pPlanetDesc);

#if defined(__cplusplus)
}
#endif

#endif /* UQM_PLANETS_SUNDATA_H_ */