-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTestCameraMotionPath2.scala.txt
299 lines (268 loc) · 11.1 KB
/
TestCameraMotionPath2.scala.txt
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
package jme3test.animation
/*
* Copyright (c) 2009-2012 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import com.jme3.animation.LoopMode
import com.jme3.app.SimpleApplication
import com.jme3.cinematic.MotionPath
import com.jme3.cinematic.MotionPathListener
import com.jme3.cinematic.events.MotionEvent
import com.jme3.font.BitmapText
import com.jme3.input.ChaseCamera
import com.jme3.input.KeyInput
import com.jme3.input.controls.ActionListener
import com.jme3.input.controls.KeyTrigger
import com.jme3.light.DirectionalLight
import com.jme3.material.Material
import com.jme3.math.ColorRGBA
import com.jme3.math.Spline.SplineType
import com.jme3.math.Vector3f
import com.jme3.scene.CameraNode
import com.jme3.scene.Geometry
import com.jme3.scene.Spatial
import com.jme3.scene.control.CameraControl.ControlDirection
import com.jme3.scene.shape.Box
import com.jme3.system.AppSettings
import org.cef.{CefClient, CefApp}
import org.cef.browser.{CefBrowserFactory, CefRenderer, CefBrowser}
import java.awt.{Color, Rectangle}
import java.nio.{Buffer, ByteBuffer}
import com.jme3.asset.plugins.{ClasspathLocator, FileLocator}
import java.io.File
import com.jme3.asset.AssetLocator
import tachyon.Users
import com.jme3.texture.Texture
import com.jme3.renderer.Renderer
import java.util
import com.jme3.util.Screenshots
import java.awt.image.BufferedImage
object TestCameraMotionPath2 {
def main(args: Array[String]) {
val app: TestCameraMotionPath2 = new TestCameraMotionPath2
app.setShowSettings(false)
val settings: AppSettings = new AppSettings(true)
settings.put("Width", new Integer(1920))
settings.put("Height", new Integer(1120))
settings.put("Title", "Shape")
settings.put("VSync", Boolean.box(true))
settings.put("Samples", new Integer(4))
app.setSettings(settings)
app.start
}
}
class TestCameraMotionPath2 extends SimpleApplication {
var cefApp: CefApp = null
var cefClient: CefClient = null
var cefBrowser: CefBrowser = null
//@volatile
//var byteArray: Array[Byte] = new Array[Byte](800 * 600 * 4)
//val newBuffer = ByteBuffer.allocateDirect(800 * 600 * 4)
override def destroy = {
cefApp.dispose
}
@volatile
var screenBuffer: ByteBuffer = null
def chromium = {
cefApp = CefApp.getInstance
cefClient = cefApp.createClient
val cefRenderer: CefRenderer = new CefRenderer {
def render {
}
def onPaint(popup: Boolean, dirtyRects: Array[Rectangle], buffer: ByteBuffer, width: Int, height: Int) {
// Copy the data across
var pos: Int = 0
if (screenBuffer==null) screenBuffer = ByteBuffer.allocateDirect(width * height * 4)
for (rect <- dirtyRects) {
for (y <- rect.y until (rect.y + rect.height); x <- rect.x until (rect.x + rect.width)) {
pos = x * 4 + (y * width * 4)
screenBuffer.put(pos, buffer.get(pos + 2))
screenBuffer.put(pos + 1, buffer.get(pos + 1))
screenBuffer.put(pos + 2, buffer.get(pos))
screenBuffer.put(pos + 3, buffer.get(pos + 3))
}
}
texture.getImage.setData(0, screenBuffer)
}
}
val startURL = "http://www.newscientist.com/"
val isTransparent = true
cefBrowser = cefClient.createBrowser(startURL, isTransparent, CefBrowserFactory.RenderType.RENDER_BYTE_BUFFER, null, 800, 600, cefRenderer)
}
def simpleInitApp {
//assetManager.registerLocator("assets", classOf[FileLocator]) // By default the assets directory is used
createScene
cam.setLocation(new Vector3f(8.4399185f, 11.189463f, 14.267577f))
camNode = new CameraNode("Motion cam", cam)
camNode.setControlDir(ControlDirection.SpatialToCamera)
camNode.setEnabled(false)
path = new MotionPath
path.setCycle(true)
path.addWayPoint(new Vector3f(20, 3, 0))
path.addWayPoint(new Vector3f(0, 3, 20))
path.addWayPoint(new Vector3f(-20, 3, 0))
path.addWayPoint(new Vector3f(0, 3, -20))
path.setCurveTension(0.83f)
path.enableDebugShape(assetManager, rootNode)
cameraMotionControl = new MotionEvent(camNode, path)
cameraMotionControl.setLoopMode(LoopMode.Loop)
cameraMotionControl.setLookAt(teapot.getWorldTranslation, Vector3f.UNIT_Y)
cameraMotionControl.setDirectionType(MotionEvent.Direction.LookAt)
rootNode.attachChild(camNode)
guiFont = assetManager.loadFont("Interface/Fonts/Default.fnt")
val wayPointsText: BitmapText = new BitmapText(guiFont, false)
wayPointsText.setSize(guiFont.getCharSet.getRenderedSize)
guiNode.attachChild(wayPointsText)
path.addListener(new MotionPathListener {
def onWayPointReach(control: MotionEvent, wayPointIndex: Int) {
if (path.getNbWayPoints == wayPointIndex + 1) {
wayPointsText.setText(control.getSpatial.getName + " Finish!!! ")
}
else {
wayPointsText.setText(control.getSpatial.getName + " Reached way point " + wayPointIndex)
}
wayPointsText.setLocalTranslation((cam.getWidth - wayPointsText.getLineWidth) / 2, cam.getHeight, 0)
}
})
flyCam.setEnabled(false)
chaser = new ChaseCamera(cam, teapot)
chaser.registerWithInput(inputManager)
chaser.setSmoothMotion(true)
chaser.setMaxDistance(50)
chaser.setDefaultDistance(50)
initInputs
chromium
}
var paintableTexture: PaintableTexture = null
var byteBuffer: ByteBuffer = null
var texture: Texture = null
private def createScene {
val mat: Material = new Material(assetManager, "Common/MatDefs/Light/Lighting.j3md")
mat.setFloat("Shininess", 1f)
mat.setBoolean("UseMaterialColors", true)
mat.setColor("Ambient", ColorRGBA.Black)
mat.setColor("Diffuse", ColorRGBA.DarkGray)
mat.setColor("Specular", ColorRGBA.White.mult(0.6f))
val matSoil: Material = new Material(assetManager, "Common/MatDefs/Light/Lighting.j3md")
matSoil.setBoolean("UseMaterialColors", true)
matSoil.setColor("Ambient", ColorRGBA.Gray)
matSoil.setColor("Diffuse", ColorRGBA.Gray)
matSoil.setColor("Specular", ColorRGBA.Black)
teapot = assetManager.loadModel("Models/Teapot/Teapot.obj")
teapot.setLocalScale(3)
teapot.setMaterial(mat)
rootNode.attachChild(teapot)
val soil: Geometry = new Geometry("soil", new Box(new Vector3f(0, -1.0f, 0), 50, 1, 50))
soil.setMaterial(matSoil)
rootNode.attachChild(soil)
val light: DirectionalLight = new DirectionalLight
light.setDirection(new Vector3f(0, -1, 0).normalizeLocal)
light.setColor(ColorRGBA.White.mult(1.5f))
rootNode.addLight(light)
val b: Box = new Box(10, 10, 10)
val geom: Geometry = new Geometry("Box", b)
val material: Material = new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md")
paintableTexture = new PaintableTexture(800, 600)
paintableTexture.setBackground(Color.white)
texture = paintableTexture.getTexture()
byteBuffer = texture.getImage.getData(0)
material.setTexture("ColorMap", texture)
// To update the texture, call update with false as parameter and call node.updateRenderState()
// Make sure to call setRefreshNeeded() on the image
//val t: Texture = assetManager.loadTexture("Interface/Logo/Monkey.jpg")
//material.setTexture("ColorMap", assetManager.loadTexture("Interface/Logo/Monkey.jpg"))
geom.setMaterial(material)
rootNode.attachChild(geom)
}
@volatile
var time: Float = 0.0f
override def simpleUpdate(tpf: Float) = {
time = time + tpf
}
private def initInputs {
inputManager.addMapping("display_hidePath", new KeyTrigger(KeyInput.KEY_P))
inputManager.addMapping("SwitchPathInterpolation", new KeyTrigger(KeyInput.KEY_I))
inputManager.addMapping("tensionUp", new KeyTrigger(KeyInput.KEY_U))
inputManager.addMapping("tensionDown", new KeyTrigger(KeyInput.KEY_J))
inputManager.addMapping("play_stop", new KeyTrigger(KeyInput.KEY_SPACE))
val acl: ActionListener = new ActionListener {
def onAction(name: String, keyPressed: Boolean, tpf: Float) {
if ((name == "display_hidePath") && keyPressed) {
if (active) {
active = false
path.disableDebugShape
}
else {
active = true
path.enableDebugShape(assetManager, rootNode)
}
}
if ((name == "play_stop") && keyPressed) {
if (playing) {
playing = false
cameraMotionControl.stop
chaser.setEnabled(true)
camNode.setEnabled(false)
}
else {
playing = true
chaser.setEnabled(false)
camNode.setEnabled(true)
cameraMotionControl.play
}
}
if ((name == "SwitchPathInterpolation") && keyPressed) {
if (path.getPathSplineType eq SplineType.CatmullRom) {
path.setPathSplineType(SplineType.Linear)
}
else {
path.setPathSplineType(SplineType.CatmullRom)
}
}
if ((name == "tensionUp") && keyPressed) {
path.setCurveTension(path.getCurveTension + 0.1f)
System.err.println("Tension : " + path.getCurveTension)
}
if ((name == "tensionDown") && keyPressed) {
path.setCurveTension(path.getCurveTension - 0.1f)
System.err.println("Tension : " + path.getCurveTension)
}
}
}
inputManager.addListener(acl, "display_hidePath", "play_stop", "SwitchPathInterpolation", "tensionUp", "tensionDown")
}
private var teapot: Spatial = null
private var active: Boolean = true
private var playing: Boolean = false
private var path: MotionPath = null
private var cameraMotionControl: MotionEvent = null
private var chaser: ChaseCamera = null
private var camNode: CameraNode = null
}