Moved galaxy object to 3D engine demonstration project
[sixth-3d-demos.git] / src / main / java / eu / svjatoslav / sixth / e3d / examples / galaxy_demo / Galaxy.java
1 /*
2  * Sixth 3D engine. Author: Svjatoslav Agejenko. 
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5 package eu.svjatoslav.sixth.e3d.examples.galaxy_demo;
6
7 import eu.svjatoslav.sixth.e3d.geometry.Point3D;
8 import eu.svjatoslav.sixth.e3d.math.Transform;
9 import eu.svjatoslav.sixth.e3d.renderer.raster.Color;
10 import eu.svjatoslav.sixth.e3d.renderer.raster.shapes.basic.GlowingPoint;
11 import eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.base.AbstractCompositeShape;
12
13 import java.util.ArrayList;
14 import java.util.List;
15 import java.util.Random;
16
17 import static java.lang.Math.*;
18
19 public class Galaxy extends AbstractCompositeShape {
20
21     private static List<Color> colors;
22
23     public Galaxy(final int galaxySize, final int tailCount, final int starsCount,
24                   Transform transform) {
25
26         super(transform);
27
28         ensureColorsAreInitialized();
29
30         final double angle1 = random() * 10;
31         final double angle2 = random() * 10;
32
33         final double angleSin1 = sin(angle1);
34         final double angleCos1 = cos(angle1);
35         final double angleSin2 = sin(angle2);
36         final double angleCos2 = cos(angle2);
37
38         Random random = new Random();
39
40         double starSize = galaxySize / 70d;
41
42         for (int i = 1; i < starsCount; i++) {
43             final double b = random() * 10;
44
45             final double s = (b * b) / 30;
46
47             final double v1 = (random() * (11.5 - b)) / 3;
48             final double v1p = v1 / 2;
49
50             final double ane = ((random() * (s / 2)) / tailCount) * 2;
51             final double sba = ((2 * PI) / tailCount)
52                     * random.nextInt(tailCount);
53
54             final double x = (((sin((b - sba) + ane) * s) + (random() * v1)) - v1p) * galaxySize;
55             final double z = (((cos((b - sba) + ane) * s) + (random() * v1)) - v1p) * galaxySize;
56             final double y = ((random() * v1) - v1p) * galaxySize;
57
58             final double x1 = (x * angleCos1) + (z * angleSin1);
59             final double z1 = (z * angleCos1) - (x * angleSin1);
60
61             final double y1 = (y * angleCos2) + (z1 * angleSin2);
62             final double z2 = (z1 * angleCos2) - (y * angleSin2);
63
64             addStar(new Point3D(x1, y1, z2), starSize);
65         }
66     }
67
68     private void addStar(final Point3D starLocation, double size) {
69         addShape(new GlowingPoint(starLocation, size, colors.get((int) (random() * colors.size()))));
70     }
71
72     private synchronized void ensureColorsAreInitialized() {
73         if (colors != null) return;
74
75         colors = new ArrayList<>();
76
77         for (int i = 0; i < 30; i++)
78             colors.add(
79                     new Color(
80                             random() + 0.5,
81                             random() + 0.5,
82                             random() + 0.5,
83                             255));
84     }
85
86 }