我对 Qt 还是很陌生,我想在我的游戏中添加一个高分系统。我发现这个文件http://grip.espace-win.net/doc/apps/qt4/html/demos-declarative-snake-content-highscoremodel-qml.html这是一个高分模型 qml 元素。我已将它添加到我的项目中,但我完全不知道如何实施它。我只是想知道当我的窗口进入某个状态时如何使用它来显示高分表。我也想知道如何在游戏重新开始时添加分数并关闭它。这看起来很傻,但我真的不知道如何使用它。
问问题
1095 次
2 回答
2
从上面的链接文件中:
像这样使用这个组件:
HighScoreModel { id: highScores game: "MyCoolGame" }
然后......在视图中使用模型:
ListView { model: highScores delegate: Component { ... player ... score ... } }
因此,通过稍微改变QMLListView
文档中给出的两个示例中更简单的一个,我们得到:
import QtQuick 1.0
ListView {
width: 180; height: 200
model: highScores {}
delegate: Text {
text: player + ": " + score
}
}
尽管如果您想进一步控制列表中每个元素的格式,正如delegate: Component
上面引用的示例中的建议所建议的那样,来自HighScoreModel.qml,文档中的第二个用法示例向您展示了如何。
于 2011-11-13T12:56:19.717 回答
0
您还可以查看基于 qt 的应用程序和游戏的 V-Play 引擎。它带有许多组件,使移动开发更容易。
您还可以使用几行代码将排行榜和用户配置文件添加到您的应用程序中:
import VPlay 2.0
import VPlayApps 1.0
import QtQuick 2.9
App {
// app navigation
Navigation {
NavigationItem {
title: "User Profile"
icon: IconType.user
NavigationStack {
initialPage: socialView.profilePage
}
}
NavigationItem {
title: "Leaderboard"
icon: IconType.flagcheckered
NavigationStack {
initialPage: socialView.leaderboardPage
}
}
}
// service configuration
VPlayGameNetwork {
id: gameNetwork
gameId: 285
secret: "AmazinglySecureGameSecret"
// increase leaderboard score by 1 for each app start
Component.onCompleted: gameNetwork.reportRelativeScore(1)
}
// social view setup
SocialView {
id: socialView
gameNetworkItem: gameNetwork
multiplayerItem: multiplayer
visible: false // we show the view pages on our custom app navigation
}
}
于 2017-12-20T12:02:40.597 回答