File size: 3,302 Bytes
6cd9596
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
function generateGeometry( objectType, numObjects ) {

	function applyVertexColors( geometry, color ) {

		var position = geometry.attributes.position;
		var colors = [];

		for ( var i = 0; i < position.count; i ++ ) {

			colors.push( color.r, color.g, color.b );

		}

		geometry.addAttribute( 'color', new THREE.Float32BufferAttribute( colors, 3 ) );

	}

	var geometries = [];

	var matrix = new THREE.Matrix4();
	var position = new THREE.Vector3();
	var rotation = new THREE.Euler();
	var quaternion = new THREE.Quaternion();
	var scale = new THREE.Vector3();
	var color = new THREE.Color();

	for ( var i = 0; i < numObjects; i ++ ) {

		position.x = Math.random() * 10000 - 5000;
		position.y = Math.random() * 6000 - 3000;
		position.z = Math.random() * 8000 - 4000;

		rotation.x = Math.random() * 2 * Math.PI;
		rotation.y = Math.random() * 2 * Math.PI;
		rotation.z = Math.random() * 2 * Math.PI;
		quaternion.setFromEuler( rotation, false );

		scale.x = Math.random() * 200 + 100;

		var geometry;

		if ( objectType === 'cube' ) {

			geometry = new THREE.BoxBufferGeometry( 1, 1, 1 );
			geometry = geometry.toNonIndexed(); // merging needs consistent buffer geometries
			scale.y = Math.random() * 200 + 100;
			scale.z = Math.random() * 200 + 100;
			color.setRGB( 0, 0, 0.1 + 0.9 * Math.random() );

		} else if ( objectType === 'sphere' ) {

			geometry = new THREE.IcosahedronBufferGeometry( 1, 1 );
			scale.y = scale.z = scale.x;
			color.setRGB( 0.1 + 0.9 * Math.random(), 0, 0 );

		}

		// give the geom's vertices a random color, to be displayed
		applyVertexColors( geometry, color );

		matrix.compose( position, quaternion, scale );
		geometry.applyMatrix( matrix );

		geometries.push( geometry );

	}

	return THREE.BufferGeometryUtils.mergeBufferGeometries( geometries );

}

function Scene( type, numObjects, cameraZ, fov, rotationSpeed, clearColor ) {

	this.clearColor = clearColor;

	this.camera = new THREE.PerspectiveCamera( fov, window.innerWidth / window.innerHeight, 1, 10000 );
	this.camera.position.z = cameraZ;

	// Setup scene
	this.scene = new THREE.Scene();
	this.scene.add( new THREE.AmbientLight( 0x555555 ) );

	var light = new THREE.SpotLight( 0xffffff, 1.5 );
	light.position.set( 0, 500, 2000 );
	this.scene.add( light );

	this.rotationSpeed = rotationSpeed;

	var defaultMaterial = new THREE.MeshPhongMaterial( { color: 0xffffff, flatShading: true, vertexColors: THREE.VertexColors } );
	this.mesh = new THREE.Mesh( generateGeometry( type, numObjects ), defaultMaterial );
	this.scene.add( this.mesh );

	var renderTargetParameters = { minFilter: THREE.LinearFilter, magFilter: THREE.LinearFilter, format: THREE.RGBFormat, stencilBuffer: false };
	this.fbo = new THREE.WebGLRenderTarget( window.innerWidth, window.innerHeight, renderTargetParameters );

	this.render = function ( delta, rtt ) {

		this.mesh.rotation.x += delta * this.rotationSpeed.x;
		this.mesh.rotation.y += delta * this.rotationSpeed.y;
		this.mesh.rotation.z += delta * this.rotationSpeed.z;

		renderer.setClearColor( this.clearColor );

		if ( rtt ) {

			renderer.setRenderTarget( this.fbo );
			renderer.clear();
			renderer.render( this.scene, this.camera );

		} else {

			renderer.setRenderTarget( null );
			renderer.render( this.scene, this.camera );

		}

	};

}