2018-07-06 03:07:05 +00:00
|
|
|
import QtQuick 2.9
|
2018-08-30 04:00:05 +00:00
|
|
|
import QtQuick.Dialogs 1.2
|
2018-07-06 03:07:05 +00:00
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
|
|
|
|
import AppModel 1.0
|
|
|
|
|
2018-07-06 05:08:55 +00:00
|
|
|
import ComputerManager 1.0
|
|
|
|
|
2018-07-06 03:07:05 +00:00
|
|
|
GridView {
|
|
|
|
property int computerIndex
|
2018-07-07 23:30:26 +00:00
|
|
|
property AppModel appModel : createModel()
|
2018-07-06 03:07:05 +00:00
|
|
|
|
2018-07-09 06:05:36 +00:00
|
|
|
id: appGrid
|
2018-09-23 22:16:27 +00:00
|
|
|
focus: true
|
|
|
|
activeFocusOnTab: true
|
2018-07-06 03:07:05 +00:00
|
|
|
anchors.fill: parent
|
2018-07-08 15:28:28 +00:00
|
|
|
anchors.leftMargin: (parent.width % (cellWidth + anchors.rightMargin)) / 2
|
2018-07-27 05:47:48 +00:00
|
|
|
anchors.topMargin: 20
|
2018-07-06 03:07:05 +00:00
|
|
|
anchors.rightMargin: 5
|
|
|
|
anchors.bottomMargin: 5
|
2018-09-06 00:08:27 +00:00
|
|
|
cellWidth: 225; cellHeight: 385;
|
2018-07-06 03:07:05 +00:00
|
|
|
|
2018-07-09 05:07:20 +00:00
|
|
|
// The StackView will trigger a visibility change when
|
|
|
|
// we're pushed onto it, causing our onVisibleChanged
|
|
|
|
// routine to run, but only if we start as invisible
|
|
|
|
visible: false
|
|
|
|
|
2018-08-10 01:48:40 +00:00
|
|
|
function computerLost()
|
|
|
|
{
|
|
|
|
// Go back to the PC view on PC loss
|
|
|
|
stackView.pop()
|
|
|
|
}
|
|
|
|
|
2018-07-09 05:07:20 +00:00
|
|
|
onVisibleChanged: {
|
|
|
|
if (visible) {
|
2018-08-10 01:48:40 +00:00
|
|
|
appModel.computerLost.connect(computerLost)
|
2018-07-09 05:07:20 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-08-10 01:48:40 +00:00
|
|
|
appModel.computerLost.disconnect(computerLost)
|
2018-07-09 05:07:20 +00:00
|
|
|
}
|
2018-07-06 07:34:16 +00:00
|
|
|
}
|
|
|
|
|
2018-07-06 03:07:05 +00:00
|
|
|
function createModel()
|
|
|
|
{
|
2018-07-06 05:08:55 +00:00
|
|
|
var model = Qt.createQmlObject('import AppModel 1.0; AppModel {}', parent, '')
|
|
|
|
model.initialize(ComputerManager, computerIndex)
|
2018-07-06 03:07:05 +00:00
|
|
|
return model
|
|
|
|
}
|
|
|
|
|
2018-07-07 23:30:26 +00:00
|
|
|
model: appModel
|
2018-07-06 03:07:05 +00:00
|
|
|
|
2018-09-23 22:16:27 +00:00
|
|
|
delegate: NavigableItemDelegate {
|
2018-09-06 00:08:27 +00:00
|
|
|
width: 200; height: 335;
|
2018-09-23 22:16:27 +00:00
|
|
|
grid: pcGrid
|
2018-07-06 03:07:05 +00:00
|
|
|
|
|
|
|
Image {
|
|
|
|
id: appIcon
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter;
|
2018-09-06 00:08:27 +00:00
|
|
|
y: 20
|
2018-07-06 03:07:05 +00:00
|
|
|
source: model.boxart
|
|
|
|
sourceSize {
|
|
|
|
width: 150
|
|
|
|
height: 200
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-05 19:19:54 +00:00
|
|
|
Image {
|
|
|
|
id: runningIcon
|
|
|
|
anchors.centerIn: appIcon
|
|
|
|
visible: model.running
|
|
|
|
source: "qrc:/res/baseline-play_circle_filled_white-48px.svg"
|
|
|
|
sourceSize {
|
|
|
|
width: 75
|
|
|
|
height: 75
|
2018-08-02 05:32:21 +00:00
|
|
|
}
|
2018-08-05 19:19:54 +00:00
|
|
|
}
|
2018-08-02 05:32:21 +00:00
|
|
|
|
2018-08-05 19:19:54 +00:00
|
|
|
Text {
|
|
|
|
id: appNameText
|
|
|
|
text: model.name
|
2018-07-06 03:07:05 +00:00
|
|
|
color: "white"
|
|
|
|
width: parent.width
|
2018-07-27 05:39:45 +00:00
|
|
|
height: 125
|
2018-07-06 03:07:05 +00:00
|
|
|
anchors.top: appIcon.bottom
|
2018-07-27 05:39:45 +00:00
|
|
|
font.pointSize: 22
|
2018-07-06 03:07:05 +00:00
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
wrapMode: Text.Wrap
|
2018-07-27 05:39:45 +00:00
|
|
|
elide: Text.ElideRight
|
2018-07-06 03:07:05 +00:00
|
|
|
}
|
|
|
|
|
2018-08-02 05:32:21 +00:00
|
|
|
function launchOrResumeSelectedApp()
|
|
|
|
{
|
|
|
|
var runningIndex = appModel.getRunningAppIndex()
|
|
|
|
if (runningIndex >= 0 && runningIndex !== index) {
|
|
|
|
quitAppDialog.appName = appModel.getRunningAppName()
|
|
|
|
quitAppDialog.segueToStream = true
|
2018-09-09 17:08:23 +00:00
|
|
|
quitAppDialog.nextAppName = model.name
|
|
|
|
quitAppDialog.nextAppIndex = index
|
2018-08-02 05:32:21 +00:00
|
|
|
quitAppDialog.open()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var component = Qt.createComponent("StreamSegue.qml")
|
2018-08-17 06:29:46 +00:00
|
|
|
var segue = component.createObject(stackView, {"appName": model.name, "session": appModel.createSessionForApp(index)})
|
2018-08-02 05:32:21 +00:00
|
|
|
stackView.push(segue)
|
|
|
|
}
|
|
|
|
|
2018-09-06 00:08:27 +00:00
|
|
|
onClicked: {
|
|
|
|
// Nothing is running or this app is running
|
|
|
|
launchOrResumeSelectedApp()
|
|
|
|
}
|
|
|
|
|
2018-07-06 03:07:05 +00:00
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
2018-09-06 00:08:27 +00:00
|
|
|
acceptedButtons: Qt.RightButton
|
2018-07-06 03:07:05 +00:00
|
|
|
onClicked: {
|
2018-09-06 00:08:27 +00:00
|
|
|
// Right click
|
|
|
|
appContextMenu.open()
|
2018-08-02 05:32:21 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-08 04:52:20 +00:00
|
|
|
|
2018-08-02 05:32:21 +00:00
|
|
|
Menu {
|
|
|
|
id: appContextMenu
|
|
|
|
MenuItem {
|
|
|
|
text: model.running ? "Resume Game" : "Launch Game"
|
|
|
|
onTriggered: {
|
|
|
|
appContextMenu.close()
|
|
|
|
launchOrResumeSelectedApp()
|
|
|
|
}
|
|
|
|
height: visible ? implicitHeight : 0
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: "Quit Game"
|
|
|
|
onTriggered: {
|
|
|
|
quitAppDialog.appName = appModel.getRunningAppName()
|
|
|
|
quitAppDialog.segueToStream = false
|
|
|
|
quitAppDialog.open()
|
|
|
|
}
|
|
|
|
visible: model.running
|
|
|
|
height: visible ? implicitHeight : 0
|
2018-07-06 03:07:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-09 06:05:36 +00:00
|
|
|
|
2018-09-08 00:33:34 +00:00
|
|
|
MessageDialog {
|
|
|
|
id: quitAppDialog
|
|
|
|
modality:Qt.WindowModal
|
2018-09-09 17:08:23 +00:00
|
|
|
property string appName : ""
|
2018-09-08 00:33:34 +00:00
|
|
|
property bool segueToStream : false
|
2018-09-09 17:08:23 +00:00
|
|
|
property string nextAppName: ""
|
|
|
|
property int nextAppIndex: 0
|
2018-09-08 00:33:34 +00:00
|
|
|
text:"Are you sure you want to quit " + appName +"? Any unsaved progress will be lost."
|
|
|
|
standardButtons: StandardButton.Yes | StandardButton.No
|
|
|
|
onYes: {
|
|
|
|
var component = Qt.createComponent("QuitSegue.qml")
|
|
|
|
var params = {"appName": appName}
|
|
|
|
if (segueToStream) {
|
|
|
|
// Store the session and app name if we're going to stream after
|
|
|
|
// successfully quitting the old app.
|
2018-09-09 17:08:23 +00:00
|
|
|
params.nextAppName = nextAppName
|
|
|
|
params.nextSession = appModel.createSessionForApp(nextAppIndex)
|
2018-09-08 00:33:34 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
params.nextAppName = null
|
|
|
|
params.nextSession = null
|
|
|
|
}
|
|
|
|
|
|
|
|
stackView.push(component.createObject(stackView, params))
|
|
|
|
|
|
|
|
// Trigger the quit after pushing the quit segue on screen
|
|
|
|
appModel.quitRunningApp()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-09 06:05:36 +00:00
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
|
|
parent: appGrid.parent
|
|
|
|
anchors {
|
|
|
|
top: appGrid.top
|
|
|
|
left: appGrid.right
|
|
|
|
bottom: appGrid.bottom
|
|
|
|
|
|
|
|
leftMargin: -10
|
|
|
|
}
|
|
|
|
}
|
2018-07-06 03:07:05 +00:00
|
|
|
}
|