-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.go
156 lines (121 loc) · 3.37 KB
/
game.go
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
package main
import (
"log"
"strconv"
"github.com/seletskiy/go-android-rpc/android"
"github.com/seletskiy/go-android-rpc/android/sdk"
)
type State struct {
Cat int
Progress int
ViewId int
Location Location
LayoutId string
LayoutName string
MoveCounter int
}
type Game struct {
state *State
headerView sdk.TextView
descView sdk.TextView
//viewId int
viewObjects map[string][]sdk.View
LocationOnClickHandler GameLocationOnClickHandler
}
func NewGame(state *State) *Game {
return &Game{
state: state,
}
}
func (game *Game) IncrementMoveCounter() {
game.state.MoveCounter += 1
}
func (game *Game) SetLocation(location Location) {
if location == nil {
log.Printf("%#v", "!!!!LOCATION IS NIL")
}
game.state.Location = location
}
func (game *Game) SetLayoutName(layoutName string) {
layoutResponse := android.GetLayoutById(layoutName)
game.state.LayoutId = layoutResponse["layout_id"].(string)
game.state.LayoutName = layoutName
}
func (game *Game) SwitchLayout() {
log.Printf("%#v", game.state.LayoutName)
android.ChangeLayout(game.state.LayoutName)
}
func (game *Game) Start() {
game.headerView = android.GetViewById("header_text").(sdk.TextView)
game.descView = android.GetViewById("desc_text").(sdk.TextView)
game.viewObjects = make(map[string][]sdk.View)
game.SwitchLocation()
}
func (game *Game) ClearViews() {
for _, view := range game.viewObjects[game.state.LayoutName] {
android.RemoveView(view, game.state.LayoutId)
}
game.viewObjects[game.state.LayoutName] = []sdk.View{}
}
func (game *Game) SwitchLocation() {
game.ClearViews()
location := game.state.Location
android.SetTextFromHtml(game.headerView, location.GetHeader())
android.SetTextFromHtml(game.descView, location.GetDescription())
//game.SetLocationArterfactsVisibility(true)
linkedLocations := location.GetLinkedLocations()
for _, linkedLocation := range linkedLocations {
button := game.CreateView("android.widget.Button").(sdk.Button)
android.SetTextFromHtml(button, linkedLocation.GetButtonTitle())
android.OnClick(button,
GameLocationOnClickHandler{
game, button, linkedLocation,
},
)
game.AttachView(button.View)
}
location.Enter(game.state)
}
func (game *Game) SetLocationArterfactsVisibility(should bool) {
headerVisible, _ := game.headerView.IsShown()
descVisible, _ := game.descView.IsShown()
if should {
if !headerVisible {
game.headerView.SetVisibility(ViewVisible)
}
if !descVisible {
game.descView.SetVisibility(ViewVisible)
}
} else {
if headerVisible {
game.headerView.SetVisibility(ViewGone)
}
if descVisible {
game.descView.SetVisibility(ViewGone)
}
}
}
func (game *Game) LocationOnClick(button sdk.Button, location Location) {
game.IncrementMoveCounter()
game.SetLocation(location)
game.SwitchLocation()
}
func (game *Game) CreateView(viewName string) interface{} {
game.state.ViewId++
id := strconv.Itoa(game.state.ViewId)
created := android.CreateView(id, viewName)
return created
}
func (game *Game) AttachView(view sdk.View) {
game.viewObjects[game.state.LayoutName] = append(
game.viewObjects[game.state.LayoutName], view)
android.AttachView(view, game.state.LayoutId)
}
type GameLocationOnClickHandler struct {
game *Game
button sdk.Button
location Location
}
func (handler GameLocationOnClickHandler) OnClick() {
handler.game.LocationOnClick(handler.button, handler.location)
}