Fix bee targeting fail across wrap world edge
Previously, the bee always aimed for the light area, no matter where you actually put the target. It also got confused whenever it flew across the wrap world edge.
How the bee works now:
1) The placed bee target is *not* recalculated when it was placed in the "gray" part of the wrap world edge. This allows for more fine-tuning.
1a) Place target in light area: bee aims for target light area
1b) Place target in gray area: bee aims for target, but flies to gray area first
2) Bee target is recalculated whenever bee passes the wrap world edge.
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
import Hedgewars.Engine 1.0
Item {
property alias button1: button1
property alias previewImage: previewImage
property alias gameButton: gameButton
width: 1024
height: 800
property alias tickButton: tickButton
property alias gameView: gameView
ColumnLayout {
anchors.fill: parent
RowLayout {
Layout.alignment: Qt.AlignHCenter
Button {
id: button1
text: qsTr("Preview")
}
Button {
id: gameButton
text: qsTr("Game")
}
Button {
id: tickButton
text: qsTr("Tick")
}
}
Rectangle {
border.color: "orange"
border.width: 5
radius: 5
Layout.minimumHeight: 256
Layout.fillWidth: true
gradient: Gradient {
GradientStop {
position: 0
color: "lightblue"
}
GradientStop {
position: 0.9
color: "blue"
}
GradientStop {
position: 0.9
color: "darkblue"
}
GradientStop {
position: 1.0
color: "darkblue"
}
}
Image {
id: previewImage
anchors.fill: parent
anchors.margins: parent.radius
source: "qrc:/res/iconTime.png"
fillMode: Image.PreserveAspectFit
cache: false
}
}
GameView {
id: gameView
Layout.fillWidth: true
Layout.fillHeight: true
}
}
}