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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick 2.0
import QtQuick.Window 2.2
import QtQuick.Scene3D 2.0
import "planets.js" as Planets
Item {
id: mainview
width: 1280
height: 768
visible: true
property int focusedPlanet: 100
property int oldPlanet: 0
property int frames: 0
property int sliderLength: (width < height) ? width / 2 : height / 2
property real textSize: sliderLength / 20
property real planetButtonSize: (height < 2200) ? (height / 13) : 200
Connections {
target: networkController
function onCommandAccepted() {
var focusedItem = mainview.Window.window.activeFocusItem
if (focusedItem && focusedItem.panningEnabled) {
focusedItem.panningEnabled = false
}
switch (command) {
case "selectPlanet":
mainview.focusedPlanet = Planets.planetId(decodeURIComponent(value))
planetButtonView.forceActiveFocus()
planetButtonView.currentIndex = Planets.planetIndex(value)
break
case "setRotationSpeed":
rotationSpeedSlider.forceActiveFocus()
rotationSpeedSlider.value = rotationSpeedSlider.from +
((rotationSpeedSlider.to - rotationSpeedSlider.from) * value)
break
case "setViewingDistance":
viewingDistanceSlider.forceActiveFocus()
viewingDistanceSlider.value = viewingDistanceSlider.from +
((viewingDistanceSlider.to - viewingDistanceSlider.from) * value)
break
case "setPlanetSize":
planetSizeSlider.forceActiveFocus()
planetSizeSlider.value = planetSizeSlider.from +
((planetSizeSlider.to - planetSizeSlider.from) * value)
break
}
}
}
//! [0]
Scene3D {
anchors.fill: parent
aspects: ["render", "logic", "input"]
SolarSystem { id: solarsystem }
}
//! [0]
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.LeftButton
onClicked:
focusedPlanet = 100
}
//! [1]
onFocusedPlanetChanged: {
if (focusedPlanet == 100) {
info.opacity = 0
updatePlanetInfo()
} else {
updatePlanetInfo()
info.opacity = 1
}
solarsystem.changePlanetFocus(oldPlanet, focusedPlanet)
oldPlanet = focusedPlanet
}
//! [1]
ListModel {
id: planetModel
ListElement {
name: "Sun"
radius: "109 x Earth"
temperature: "5 778 K"
orbitalPeriod: ""
distance: ""
planetImageSource: "qrc:/images/sun.png"
planetNumber: 0
}
ListElement {
name: "Mercury"
radius: "0.3829 x Earth"
temperature: "80-700 K"
orbitalPeriod: "87.969 d"
distance: "0.387 098 AU"
planetImageSource: "qrc:/images/mercury.png"
planetNumber: 1
}
ListElement {
name: "Venus"
radius: "0.9499 x Earth"
temperature: "737 K"
orbitalPeriod: "224.701 d"
distance: "0.723 327 AU"
planetImageSource: "qrc:/images/venus.png"
planetNumber: 2
}
ListElement {
name: "Earth"
radius: "6 378.1 km"
temperature: "184-330 K"
orbitalPeriod: "365.256 d"
distance: "149598261 km (1 AU)"
planetImageSource: "qrc:/images/earth.png"
planetNumber: 3
}
ListElement {
name: "Mars"
radius: "0.533 x Earth"
temperature: "130-308 K"
orbitalPeriod: "686.971 d"
distance: "1.523679 AU"
planetImageSource: "qrc:/images/mars.png"
planetNumber: 4
}
ListElement {
name: "Jupiter"
radius: "11.209 x Earth"
temperature: "112-165 K"
orbitalPeriod: "4332.59 d"
distance: "5.204267 AU"
planetImageSource: "qrc:/images/jupiter.png"
planetNumber: 5
}
ListElement {
name: "Saturn"
radius: "9.4492 x Earth"
temperature: "84-134 K"
orbitalPeriod: "10759.22 d"
distance: "9.5820172 AU"
planetImageSource: "qrc:/images/saturn.png"
planetNumber: 6
}
ListElement {
name: "Uranus"
radius: "4.007 x Earth"
temperature: "49-76 K"
orbitalPeriod: "30687.15 d"
distance: "19.189253 AU"
planetImageSource: "qrc:/images/uranus.png"
planetNumber: 7
}
ListElement {
name: "Neptune"
radius: "3.883 x Earth"
temperature: "55-72 K"
orbitalPeriod: "60190.03 d"
distance: "30.070900 AU"
planetImageSource: "qrc:/images/neptune.png"
planetNumber: 8
}
ListElement {
name: "Solar System"
planetImageSource: ""
planetNumber: 100 // Defaults to solar system
}
}
Component {
id: planetButtonDelegate
PlanetButton {
source: model.planetImageSource
text: model.name
focusPlanet: model.planetNumber
planetSelector: mainview
buttonSize: planetButtonSize
fontSize: textSize
scale: activeFocus ? 1.4 : 1.0
Behavior on scale {
PropertyAnimation {
duration: 200
}
}
signal swipeUp()
signal swipeDown()
signal swipeLeft()
onSwipeUp: {
if (planetButtonView.currentIndex > 0) {
planetButtonView.currentIndex--
} else {
rotationSpeedSlider.forceActiveFocus()
}
}
onSwipeDown: {
if (planetButtonView.currentIndex < planetButtonView.count - 1) {
planetButtonView.currentIndex++
} else {
planetSizeSlider.forceActiveFocus()
}
}
onSwipeLeft: {
if (index <= planetButtonView.count / 2) {
rotationSpeedSlider.forceActiveFocus()
} else {
planetSizeSlider.forceActiveFocus()
}
}
Keys.onPressed: {
if (event.key === Qt.Key_Select) {
planetSelector.focusedPlanet = focusPlanet
}
}
}
}
ListView {
id: planetButtonView
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
anchors.rightMargin: planetButtonSize / 2
height: childrenRect.height
spacing: planetButtonSize / 6
width: planetButtonSize * 1.4
interactive: false
model: planetModel
delegate: planetButtonDelegate
}
InfoSheet {
id: info
width: 400
anchors.right: planetButtonView.left
anchors.rightMargin: 40
opacity: 1
// Set initial information for Solar System
planet: "Solar System"
exampleDetails: "This example shows a 3D model of the Solar</p>" +
"<p>System comprised of the Sun and the eight</p>" +
"<p>planets orbiting the Sun.</p></br>" +
"<p>The example is implemented using Qt3D.</p>" +
"<p>The textures and images used in the example</p>" +
"<p>are Copyright (c) by James Hastings-Trew,</p>" +
"<a href=\"http://planetpixelemporium.com/planets.html\">" +
"http://planetpixelemporium.com/planets.html</a>"
}
function updatePlanetInfo() {
info.width = 200
if (focusedPlanet !== 100) {
info.planet = planetModel.get(focusedPlanet).name
info.radius = planetModel.get(focusedPlanet).radius
info.temperature = planetModel.get(focusedPlanet).temperature
info.orbitalPeriod = planetModel.get(focusedPlanet).orbitalPeriod
info.distance = planetModel.get(focusedPlanet).distance
}
}
Row {
anchors.top: parent.top
anchors.topMargin: 10
anchors.horizontalCenter: parent.horizontalCenter
spacing: 10
scale: rotationSpeedSlider.activeFocus ? 1.4 : 1.0
opacity: rotationSpeedSlider.activeFocus ? 1.0 : 0.5
Behavior on scale {
PropertyAnimation {
duration: 200
}
}
Text {
anchors.verticalCenter: parent.verticalCenter
font.family: "Helvetica"
font.pixelSize: textSize
font.weight: Font.Light
color: rotationSpeedSlider.panningEnabled ? "#80c342" : "#ffffff"
text: "Rotation Speed"
}
StyledSlider {
id: rotationSpeedSlider
anchors.verticalCenter: parent.verticalCenter
width: sliderLength
value: 0.2
from: 0
to: 1
onValueChanged: solarsystem.changeSpeed(value)
focus: Qt.platform.os === "tvos" ? true : false
property bool panningEnabled: false
signal swipeDown()
signal swipeLeft()
signal swipeRight()
signal pannedHorizontally(real p)
signal pannedVertically(real p)
onSwipeDown: {
planetSizeSlider.forceActiveFocus()
}
onSwipeLeft: {
viewingDistanceSlider.forceActiveFocus()
}
onSwipeRight: {
planetButtonView.currentIndex = 0
planetButtonView.forceActiveFocus()
}
onPannedHorizontally: {
var step = (to - from) / 30
if (p > 0) {
value += step
} else {
value -= step
}
}
Keys.onPressed: {
if (event.key === Qt.Key_Select) {
panningEnabled = !panningEnabled
}
}
}
}
Column {
anchors.left: parent.left
anchors.leftMargin: 30
anchors.verticalCenter: parent.verticalCenter
spacing: 10
scale: viewingDistanceSlider.activeFocus ? 1.4 : 1.0
opacity: viewingDistanceSlider.activeFocus ? 1.0 : 0.5
Behavior on scale {
PropertyAnimation {
duration: 200
}
}
StyledSlider {
id: viewingDistanceSlider
anchors.horizontalCenter: parent.horizontalCenter
orientation: Qt.Vertical
height: sliderLength
value: 1
from: 1
to: 2
//! [2]
onValueChanged: solarsystem.changeCameraDistance(value)
//! [2]
property bool panningEnabled: false
signal swipeUp()
signal swipeDown()
signal swipeRight()
signal pannedHorizontally(real p)
signal pannedVertically(real p)
onSwipeUp: {
rotationSpeedSlider.forceActiveFocus()
}
onSwipeDown: {
planetSizeSlider.forceActiveFocus()
}
onSwipeRight: {
planetButtonView.currentIndex = 0
planetButtonView.forceActiveFocus()
}
onPannedVertically: {
var step = (to - from) / 30
if (p > 0) {
value += step
} else {
value -= step
}
}
Keys.onPressed: {
if (event.key === Qt.Key_Select) {
panningEnabled = !panningEnabled
}
}
}
Text {
anchors.horizontalCenter: parent.horizontalCenter
font.family: "Helvetica"
font.pixelSize: textSize
font.weight: Font.Light
color: viewingDistanceSlider.panningEnabled ? "#80c342" : "#ffffff"
text: "Viewing\nDistance"
}
}
Row {
anchors.bottom: parent.bottom
anchors.bottomMargin: 10
anchors.horizontalCenter: parent.horizontalCenter
spacing: 10
scale: planetSizeSlider.activeFocus ? 1.4 : 1.0
opacity: planetSizeSlider.activeFocus ? 1.0 : 0.5
Behavior on scale {
PropertyAnimation {
duration: 200
}
}
Text {
anchors.verticalCenter: parent.verticalCenter
font.family: "Helvetica"
font.pixelSize: textSize
font.weight: Font.Light
color: planetSizeSlider.panningEnabled ? "#80c342" : "#ffffff"
text: "Planet Size"
}
StyledSlider {
id: planetSizeSlider
anchors.verticalCenter: parent.verticalCenter
width: sliderLength
value: 1200
from: 1
to: 2000
onValueChanged: solarsystem.changeScale(value, false)
property bool panningEnabled: false
signal swipeUp()
signal swipeLeft()
signal swipeRight()
signal pannedHorizontally(real p)
signal pannedVertically(real p)
onSwipeUp: {
rotationSpeedSlider.forceActiveFocus()
}
onSwipeLeft: {
viewingDistanceSlider.forceActiveFocus()
}
onSwipeRight: {
planetButtonView.currentIndex = planetButtonView.count - 1
planetButtonView.forceActiveFocus()
}
onPannedHorizontally: {
var step = (to - from) / 30
if (p > 0) {
value += step
} else {
value -= step
}
}
Keys.onPressed: {
if (event.key === Qt.Key_Select) {
panningEnabled = !panningEnabled
}
}
}
}
// FPS display, initially hidden, clicking will show it
FpsDisplay {
id: fpsDisplay
anchors.left: parent.left
anchors.bottom: parent.bottom
width: 32
height: 64
hidden: true
}
Timer {
interval: 1000
repeat: true
running: !fpsDisplay.hidden
onTriggered: {
fpsDisplay.fps = frames
frames = 0
}
onRunningChanged: frames = 0
}
Loader {
anchors.fill: parent
source: Qt.platform.os === "tvos" ? "AppleTVInput.qml" : ""
}
}
|