- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从 kivy 开始在教程中玩,我在 Pong 教程的最后,想根据分数添加“获胜者”标签。
为了做到这一点,我设计了一个获胜者标签:
<Winner>:
Label:
font_size: 200
#center_x: self.parent.width * .5
#center_y: self.parent.top - .5
text: "wINNER!"
我想根据 Pong 游戏的尺寸将此标签放在中间,但它最终位于左下角的某个位置。
我也尝试直接在python中添加小部件(参见更新方法),但是我仍然不知道如何动态地进行放置,就像如何将带有分数的其他标签放置在kivy文件中的PongGame中.
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.uix.label import Label
from kivy.properties import (
NumericProperty, ReferenceListProperty, ObjectProperty
)
from kivy.vector import Vector
from kivy.clock import Clock
class PongPaddle(Widget):
score = NumericProperty(0)
def bounce_ball(self, ball):
if self.collide_widget(ball):
vx, vy = ball.velocity
offset = (ball.center_y - self.center_y) / (self.height / 2)
bounced = Vector(-1 * vx, vy)
vel = bounced * 1.1
ball.velocity = vel.x, vel.y + offset
class PongBall(Widget):
velocity_x = NumericProperty(0)
velocity_y = NumericProperty(0)
velocity = ReferenceListProperty(velocity_x, velocity_y)
def move(self):
self.pos = Vector(*self.velocity) + self.pos
class Winner(Widget):
pass
class PongGame(Widget):
ball = ObjectProperty(None)
player1 = ObjectProperty(None)
player2 = ObjectProperty(None)
def serve_ball(self, vel=(4, 0)):
self.ball.center = self.center
self.ball.velocity = vel
def update(self, dt):
self.ball.move()
# bounce of paddles
self.player1.bounce_ball(self.ball)
self.player2.bounce_ball(self.ball)
# bounce ball off bottom or top
if (self.ball.y < self.y) or (self.ball.top > self.top):
self.ball.velocity_y *= -1
# went of to a side to score point?
if self.ball.x < self.x:
self.player2.score += 1
self.serve_ball(vel=(4, 0))
if self.ball.x > self.width:
self.player1.score += 1
self.serve_ball(vel=(-4, 0))
if self.player1.score>0:
Clock.unschedule(self.update)
self.add_widget(Winner())
# self.add_widget(text='bla',center_y=self.parent.top-50)
self.add_widget(Label(text='bla',center_y=self.parent.top-50))
if self.player2.score>0:
Clock.unschedule(self.update)
self.add_widget(Winner())
self.add_widget(Label(text='bla',center_y=self.parent.top-50))
def on_touch_move(self, touch):
if touch.x < self.width / 3:
self.player1.center_y = touch.y
if touch.x > self.width - self.width / 3:
self.player2.center_y = touch.y
class PongApp(App):
def build(self):
game = PongGame()
game.serve_ball()
Clock.schedule_interval(game.update, 1.0 / 60.0)
return game
if __name__ == '__main__':
PongApp().run()
kivy
#:kivy 1.0.9
<PongBall>:
size: 50, 50
canvas:
Ellipse:
pos: self.pos
size: self.size
<Winner>:
Label:
font_size: 200
center_x: self.parent.width * .5
center_y: self.parent.top - .5
text: "wINNER!"
<PongPaddle>:
size: 20, 200
canvas:
Rectangle:
pos: self.pos
size: self.size
<PongGame>:
ball: pong_ball
player1: player_left
player2: player_right
canvas:
Rectangle:
pos: self.center_x - 5, 0
size: 10, self.height
Label:
font_size: 70
center_x: root.width / 4
top: root.top - 50
text: str(root.player1.score)
Label:
font_size: 70
center_x: root.width * 3 / 4
top: root.top - 50
text: str(root.player2.score)
Label:
font_size: 70
center_x: root.width * .5
top: root.top - 50
text: "Winner!"
PongBall:
id: pong_ball
center: self.parent.center
PongPaddle:
id: player_left
x: root.x
y: root.center_y
PongPaddle:
id: player_right
x: root.width-self.width
center_y: root.center_y
如何引用父控件的属性?谢谢!
最佳答案
需要在 kv 文件和 Python 脚本中进行以下增强才能解决该问题。
app.root
引用根小部件。There are three keywords specific to the Kv language:
- app: always refers to the instance of your application.
- root: refers to the base widget/template in the current rule
- self: always refer to the current widget
Kivy Language » Value Expressions, on_property Expressions, ids, and Reserved Keywords
self
The keyword self references the “current widget instance”:
Button:
text: 'My state is %s' % self.stateroot
This keyword is available only in rule definitions and represents the root widget of the rule (the first instance of the rule):
<MyWidget>:
custom: 'Hello world'
Button:
text: root.customapp
This keyword always refers to your app instance. It’s equivalent to a call to kivy.app.App.get_running_app() in Python.
Label:
text: app.name
<Winner>:
font_size: 200
center: app.root.center
text: "WINNER!"
Winner()
的继承从Widget
更改为Label
,因为我们实际上并不需要两个小部件,这样会减少资源使用情况,例如内存、应用程序大小等。Winner
对象。class Winner(Label):
pass
class PongGame(Widget):
...
def update(self, dt):
self.ball.move()
...
if self.player1.score > 0:
self.add_widget(Winner())
if self.player2.score > 0:
self.add_widget(Winner())
def on_touch_move(self, touch):
...
关于python - 我可以从 kiwi 语言中的一个小部件引用另一小部件的属性吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56711262/
是否可以让 kiwi-tcms 测试用例在远程服务器上启动可执行文件以执行测试用例,如果可以,该怎么做? 最佳答案 简短的回答 - 不! 长答案: 您正在寻找的是某种测试运行程序或 CI 系统 - 将
我正在寻找一种方法来测试嵌套对象的属性。本质上,我有一个规范将验证我们从外部服务返回的结果。由于我不想为要测试的每个示例对服务进行无数次调用,因此在规范的开头发出一次请求,然后我们使用一组期望来验证响
我在我的规范文件中的 BEGIN_SPEC END_SPEC block 中定义了一些辅助 block ,我经常重复使用这些 block 。例如。断言某个对话框出现: void (^expectOkA
我有一些重复的规范,我想干掉。通用功能不适合移动到 beforeEach block 中。本质上,它是对象创建,12 个对象中的每一个对象有 4 行,我想将这 4 行变成一个函数调用。 我可以在 Ki
问题描述: 我已按照此网站上介绍的分步进行操作:https://kiwitcms.readthedocs.io/en/latest/installing_docker.html 运行docker-co
有没有一种方法可以强制在Kiwi测试中失败,即等同于XCTFail()。 我可以写类似 [@"" should] beNil] 那将永远失败,但我认为Kiwi必须对开发人员融入框架的意图更具表达力。
我从 kivy 开始在教程中玩,我在 Pong 教程的最后,想根据分数添加“获胜者”标签。 为了做到这一点,我设计了一个获胜者标签: : Label: font_size: 2
我想使用 XML-RPC 将我的 iPhone 应用程序的测试结果发布到我的 TestLink。 我用 Kiwi在我的项目中,现在我想得到测试的结果。我可以知道我的测试用例上的条件是否通过或失败? 最
我浏览了各种类模拟示例,如下所示: https://groups.google.com/forum/#!topic/kiwi-bdd/hrR2Om3Hv3I https://gist.github.c
我一直在寻找使用 PyGTK 的适用于 Python 的良好 MVC 框架。我看过 Kiwi但发现它有点欠缺,尤其是在使用 Gazpacho Glade 替代品时。 还有其他不错的桌面 Python
我正在努力找出在后台线程中测试与 Core Data 交互的最佳方法。我有以下类方法: + (void)fetchSomeJSON { // Download some json then p
这link演示如何使用 Kiwi 捕获模拟对象的参数。 有没有办法捕获静态方法调用的参数?在我看来,这只适用于实例方法。 最佳答案 考虑到相同的 message dispatching mechani
我需要以下方面的帮助:我正在为具有以下结构的客户端 API 编写一些 BDD 测试: @protocol MyAPIClientDelegate -(void)myCallbackMethod:
我有一个包含 3 个项目的工作区: 我的应用 常见 pod Common是MyApp依赖的一个公共(public)库。我想设置 CocoaPods 和 Kiwi 以在这个项目中正常工作。我该怎么做?
我非常偏爱高度可预测的 Arrange Act Assert format用于单元测试。 因为 Kiwi 没有针对模拟的显式验证语句,所以它强制采用不同的模式,例如: // Arrange Thing
出于某种原因,我的测试每次都通过了。即使我添加 fail(@"failed"); Xcode 仍然显示“测试成功” 有什么想法吗? 这是我的规范的样子 #import "SDRViewControll
我正在尝试 JASidePanels使用 Kiwi,并出现以下错误: failed: 'Root side panel controller, wants to show left panel, sh
我正在研究用于测试的 kiwi 框架 myStack.m - (id) init { if (self = [super init]) { _data = [[NSMutabl
我对这段代码有疑问,它在 Kiwiirc 中除了 Firefox 之外的所有地方都运行良好。 当我点击粗体、斜体或下划线时,它只是关闭弹出框,并没有设置它们中的任何一个。它不会在任何其他浏览器中执行此
我有一个应用程序,为此我使用 Objective Resource 创建本地对象以反射(reflect)远程响应。 特定的模型类有一个抽象类的子类,为它们提供各种附加功能,最重要的是序列化、写入磁盘和
我是一名优秀的程序员,十分优秀!