modify demo
This commit is contained in:
parent
4d92d5ba08
commit
81eb27843a
@ -1,71 +1,83 @@
|
|||||||
import { Image, ViewHolder, VMPanel, ViewModel, Gravity, NativeCall, Text, Color, VLayout, log, logw, loge, Group, LayoutSpec, } from "doric"
|
import { vlayout, Image, ViewHolder, VMPanel, ViewModel, Gravity, NativeCall, Text, Color, log, logw, loge, Group, LayoutSpec, } from "doric"
|
||||||
|
|
||||||
|
|
||||||
interface CountModel {
|
interface CountModel {
|
||||||
count: number
|
count: number
|
||||||
}
|
}
|
||||||
|
|
||||||
class CounterView extends ViewHolder {
|
class CounterView extends ViewHolder<CountModel> {
|
||||||
number = new Text
|
|
||||||
counter = new Text
|
number!: Text
|
||||||
|
counter!: Text
|
||||||
build(root: Group) {
|
build(root: Group) {
|
||||||
const vlayout = new VLayout
|
root.addChild(vlayout([
|
||||||
vlayout.width = 200
|
() => {
|
||||||
vlayout.height = 200
|
return (new Text).also(it => {
|
||||||
vlayout.gravity = new Gravity().center()
|
it.textSize = 40
|
||||||
this.number.textSize = 40
|
it.layoutConfig = {
|
||||||
this.number.layoutConfig = {
|
|
||||||
alignment: new Gravity().center()
|
alignment: new Gravity().center()
|
||||||
}
|
}
|
||||||
this.counter = new Text
|
this.number = it
|
||||||
this.counter.text = "点击计数"
|
})
|
||||||
this.counter.border = {
|
},
|
||||||
|
() => {
|
||||||
|
return (new Text).also(it => {
|
||||||
|
it.text = "点击计数"
|
||||||
|
it.textSize = 20
|
||||||
|
|
||||||
|
it.border = {
|
||||||
width: 1,
|
width: 1,
|
||||||
color: Color.parse('#000000'),
|
color: Color.parse('#000000'),
|
||||||
}
|
}
|
||||||
this.counter.textSize = 20
|
it.corners = 5
|
||||||
this.counter.corners = 5
|
|
||||||
vlayout.space = 20
|
it.layoutConfig = {
|
||||||
vlayout.layoutConfig = {
|
|
||||||
alignment: new Gravity().center()
|
alignment: new Gravity().center()
|
||||||
}
|
}
|
||||||
vlayout.border = {
|
it.shadow = {
|
||||||
width: 1,
|
|
||||||
color: Color.parse("#000000"),
|
|
||||||
}
|
|
||||||
this.counter.shadow = {
|
|
||||||
color: Color.parse("#00ff00"),
|
color: Color.parse("#00ff00"),
|
||||||
opacity: 0.5,
|
opacity: 0.5,
|
||||||
radius: 20,
|
radius: 20,
|
||||||
offsetX: 10,
|
offsetX: 10,
|
||||||
offsetY: 10,
|
offsetY: 10,
|
||||||
}
|
}
|
||||||
vlayout.shadow = {
|
this.counter = it
|
||||||
|
})
|
||||||
|
},
|
||||||
|
]).also(it => {
|
||||||
|
it.width = 200
|
||||||
|
it.height = 200
|
||||||
|
it.space = 20
|
||||||
|
it.gravity = new Gravity().center()
|
||||||
|
it.layoutConfig = {
|
||||||
|
alignment: new Gravity().center()
|
||||||
|
}
|
||||||
|
it.border = {
|
||||||
|
width: 1,
|
||||||
|
color: Color.parse("#000000"),
|
||||||
|
}
|
||||||
|
it.shadow = {
|
||||||
color: Color.parse("#ffff00"),
|
color: Color.parse("#ffff00"),
|
||||||
opacity: 0.5,
|
opacity: 0.5,
|
||||||
radius: 20,
|
radius: 20,
|
||||||
offsetX: 10,
|
offsetX: 10,
|
||||||
offsetY: 10,
|
offsetY: 10,
|
||||||
}
|
}
|
||||||
vlayout.corners = 20
|
it.corners = 20
|
||||||
vlayout.addChild(this.number)
|
it.bgColor = Color.parse('#ff00ff')
|
||||||
vlayout.addChild(this.counter)
|
}))
|
||||||
// root.bgColor = Color.parse('#00ff00')
|
|
||||||
vlayout.bgColor = Color.parse('#ff00ff')
|
root.addChild((new Image).also(iv => {
|
||||||
root.addChild(vlayout)
|
|
||||||
const iv = new Image
|
|
||||||
// iv.width = iv.height = 100
|
|
||||||
iv.imageUrl = "https://misc.aotu.io/ONE-SUNDAY/SteamEngine.png"
|
iv.imageUrl = "https://misc.aotu.io/ONE-SUNDAY/SteamEngine.png"
|
||||||
//iv.bgColor = Color.parse('#00ff00')
|
|
||||||
iv.layoutConfig = {
|
iv.layoutConfig = {
|
||||||
widthSpec: LayoutSpec.WRAP_CONTENT,
|
widthSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
heightSpec: LayoutSpec.WRAP_CONTENT,
|
heightSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
}
|
}
|
||||||
root.addChild(iv)
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
setNumber(n: number) {
|
bind(state: CountModel) {
|
||||||
this.number.text = n.toString()
|
this.number.text = `${state.count}`
|
||||||
}
|
}
|
||||||
|
|
||||||
setCounter(v: Function) {
|
setCounter(v: Function) {
|
||||||
@ -74,35 +86,33 @@ class CounterView extends ViewHolder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class CounterVM extends ViewModel<CountModel, CounterView> {
|
class CounterVM extends ViewModel<CountModel, CounterView> {
|
||||||
|
onAttached(s: CountModel, vh: CounterView): void {
|
||||||
binding(v: CounterView, model: CountModel): void {
|
vh.counter.onClick = () => {
|
||||||
v.setNumber(model.count)
|
this.updateState(state => {
|
||||||
v.setCounter(() => {
|
state.count++
|
||||||
this.getModel().count++
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Entry
|
@Entry
|
||||||
class MyPage extends VMPanel<CountModel, CounterView>{
|
class MyPage extends VMPanel<CountModel>{
|
||||||
|
|
||||||
getVMClass() {
|
|
||||||
|
getViewHolderClass() {
|
||||||
|
return CounterView
|
||||||
|
}
|
||||||
|
|
||||||
|
getViewModelClass() {
|
||||||
return CounterVM
|
return CounterVM
|
||||||
}
|
}
|
||||||
|
|
||||||
getModel() {
|
getState(): CountModel {
|
||||||
return {
|
return {
|
||||||
count: 0,
|
count: 0
|
||||||
add: function () {
|
|
||||||
this.count++
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getViewHolder() {
|
|
||||||
return new CounterView
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@NativeCall
|
@NativeCall
|
||||||
log() {
|
log() {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { loge, log, ViewHolder, Stack, ViewModel, Gravity, Text, Color, HLayout, VLayout, Group, VMPanel, LayoutSpec } from "doric";
|
import { loge, log, ViewHolder, Stack, ViewModel, Gravity, Text, Color, HLayout, VLayout, Group, VMPanel, LayoutSpec, vlayout, hlayout } from "doric";
|
||||||
|
|
||||||
type SnakeNode = {
|
type SnakeNode = {
|
||||||
x: number
|
x: number
|
||||||
@ -134,7 +134,8 @@ class SnakeModel {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SnakeView extends ViewHolder {
|
class SnakeView extends ViewHolder<SnakeModel> {
|
||||||
|
|
||||||
panel: Stack = new Stack
|
panel: Stack = new Stack
|
||||||
start: Text = new Text
|
start: Text = new Text
|
||||||
up?: Text
|
up?: Text
|
||||||
@ -144,8 +145,9 @@ class SnakeView extends ViewHolder {
|
|||||||
|
|
||||||
build(root: Group): void {
|
build(root: Group): void {
|
||||||
root.bgColor = Color.parse('#000000')
|
root.bgColor = Color.parse('#000000')
|
||||||
const vlayout = new VLayout
|
vlayout([
|
||||||
const title = new Text
|
() => {
|
||||||
|
return (new Text).also(title => {
|
||||||
title.text = "Snake"
|
title.text = "Snake"
|
||||||
title.textSize = 20
|
title.textSize = 20
|
||||||
title.textColor = Color.parse("#ffffff")
|
title.textColor = Color.parse("#ffffff")
|
||||||
@ -157,24 +159,18 @@ class SnakeView extends ViewHolder {
|
|||||||
widthSpec: LayoutSpec.WRAP_CONTENT,
|
widthSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
heightSpec: LayoutSpec.WRAP_CONTENT,
|
heightSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
}
|
}
|
||||||
vlayout.space = 20
|
})
|
||||||
vlayout.layoutConfig = {
|
},
|
||||||
alignment: new Gravity().centerX().top(),
|
() => {
|
||||||
widthSpec: LayoutSpec.WRAP_CONTENT,
|
return (new Stack).also(panel => {
|
||||||
heightSpec: LayoutSpec.WRAP_CONTENT,
|
panel.bgColor = Color.parse('#00ff00')
|
||||||
}
|
|
||||||
this.panel.bgColor = Color.parse('#00ff00')
|
|
||||||
vlayout.addChild(title)
|
|
||||||
vlayout.addChild(this.panel)
|
|
||||||
root.addChild(vlayout)
|
|
||||||
|
|
||||||
const hlayout = new HLayout
|
})
|
||||||
hlayout.layoutConfig = {
|
},
|
||||||
widthSpec: LayoutSpec.WRAP_CONTENT,
|
() => {
|
||||||
heightSpec: LayoutSpec.WRAP_CONTENT,
|
return hlayout([
|
||||||
}
|
() => {
|
||||||
hlayout.addChild(this.start.also(
|
return (new Text).also(it => {
|
||||||
it => {
|
|
||||||
it.text = "Start"
|
it.text = "Start"
|
||||||
it.textSize = 30
|
it.textSize = 30
|
||||||
it.textColor = Color.parse("#ffffff")
|
it.textColor = Color.parse("#ffffff")
|
||||||
@ -182,16 +178,59 @@ class SnakeView extends ViewHolder {
|
|||||||
widthSpec: LayoutSpec.WRAP_CONTENT,
|
widthSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
heightSpec: LayoutSpec.WRAP_CONTENT,
|
heightSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
}
|
}
|
||||||
}))
|
this.start = it
|
||||||
vlayout.addChild(hlayout)
|
})
|
||||||
|
},
|
||||||
|
]).also(it => {
|
||||||
this.up = this.buildController("↑")
|
it.layoutConfig = {
|
||||||
this.down = this.buildController("↓")
|
widthSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
this.left = this.buildController("←")
|
heightSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
this.right = this.buildController("→")
|
}
|
||||||
|
})
|
||||||
const controlArea = new VLayout
|
},
|
||||||
|
() => {
|
||||||
|
return vlayout([
|
||||||
|
() => {
|
||||||
|
return hlayout([
|
||||||
|
() => {
|
||||||
|
return this.buildController("↑").also(it => {
|
||||||
|
this.up = it
|
||||||
|
})
|
||||||
|
}
|
||||||
|
]).also(it => {
|
||||||
|
it.layoutConfig = {
|
||||||
|
widthSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
|
heightSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
() => {
|
||||||
|
return hlayout([
|
||||||
|
() => {
|
||||||
|
return this.buildController("←").also(it => {
|
||||||
|
this.left = it
|
||||||
|
})
|
||||||
|
},
|
||||||
|
() => {
|
||||||
|
return this.buildController("↓").also(it => {
|
||||||
|
this.down = it
|
||||||
|
})
|
||||||
|
},
|
||||||
|
() => {
|
||||||
|
return this.buildController("→").also(it => {
|
||||||
|
this.right = it
|
||||||
|
})
|
||||||
|
},
|
||||||
|
]).also(it => {
|
||||||
|
it.layoutConfig = {
|
||||||
|
widthSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
|
heightSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
|
}
|
||||||
|
it.space = 10
|
||||||
|
})
|
||||||
|
},
|
||||||
|
])
|
||||||
|
.also(controlArea => {
|
||||||
controlArea.gravity = new Gravity().centerX()
|
controlArea.gravity = new Gravity().centerX()
|
||||||
controlArea.space = 10
|
controlArea.space = 10
|
||||||
controlArea.layoutConfig = {
|
controlArea.layoutConfig = {
|
||||||
@ -199,24 +238,16 @@ class SnakeView extends ViewHolder {
|
|||||||
widthSpec: LayoutSpec.WRAP_CONTENT,
|
widthSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
heightSpec: LayoutSpec.WRAP_CONTENT,
|
heightSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
}
|
}
|
||||||
const line1 = new HLayout
|
})
|
||||||
const line2 = new HLayout
|
}
|
||||||
line2.space = 10
|
]).also(it => {
|
||||||
line1.addChild(this.up)
|
it.space = 20
|
||||||
line2.addChild(this.left)
|
it.layoutConfig = {
|
||||||
line2.addChild(this.down)
|
alignment: new Gravity().centerX().top(),
|
||||||
line2.addChild(this.right)
|
|
||||||
line1.layoutConfig = {
|
|
||||||
widthSpec: LayoutSpec.WRAP_CONTENT,
|
widthSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
heightSpec: LayoutSpec.WRAP_CONTENT,
|
heightSpec: LayoutSpec.WRAP_CONTENT,
|
||||||
}
|
}
|
||||||
line2.layoutConfig = {
|
})
|
||||||
widthSpec: LayoutSpec.WRAP_CONTENT,
|
|
||||||
heightSpec: LayoutSpec.WRAP_CONTENT,
|
|
||||||
}
|
|
||||||
controlArea.addChild(line1)
|
|
||||||
controlArea.addChild(line2)
|
|
||||||
vlayout.addChild(controlArea)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
buildController(text: string) {
|
buildController(text: string) {
|
||||||
@ -228,19 +259,54 @@ class SnakeView extends ViewHolder {
|
|||||||
ret.textAlignment = new Gravity().center()
|
ret.textAlignment = new Gravity().center()
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bind(state: SnakeModel): void {
|
||||||
|
this.panel.width = state.width * 10
|
||||||
|
this.panel.height = state.height * 10
|
||||||
|
let node: SnakeNode | undefined = state.head
|
||||||
|
let nodes: SnakeNode[] = []
|
||||||
|
while (node != undefined) {
|
||||||
|
nodes.push(node)
|
||||||
|
node = node.next
|
||||||
|
}
|
||||||
|
nodes.push(state.food)
|
||||||
|
nodes.forEach((e, index) => {
|
||||||
|
|
||||||
|
let item = this.panel.children[index]
|
||||||
|
if (item === undefined) {
|
||||||
|
item = new Stack
|
||||||
|
item.width = item.height = 10
|
||||||
|
this.panel.addChild(item)
|
||||||
|
}
|
||||||
|
if (index === nodes.length - 1) {
|
||||||
|
item.bgColor = Color.parse('#ffff00')
|
||||||
|
} else {
|
||||||
|
item.bgColor = Color.parse('#ff0000')
|
||||||
|
}
|
||||||
|
item.x = e.x * 10
|
||||||
|
item.y = e.y * 10
|
||||||
|
})
|
||||||
|
|
||||||
|
if (nodes.length < this.panel.children.length) {
|
||||||
|
this.panel.children.length = nodes.length
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SnakeVM extends ViewModel<SnakeModel, SnakeView>{
|
class SnakeVM extends ViewModel<SnakeModel, SnakeView>{
|
||||||
|
|
||||||
timerId?: any
|
timerId?: any
|
||||||
|
|
||||||
start = () => {
|
start = () => {
|
||||||
if (this.timerId !== undefined) {
|
if (this.timerId !== undefined) {
|
||||||
clearInterval(this.timerId)
|
clearInterval(this.timerId)
|
||||||
}
|
}
|
||||||
this.getModel().reset()
|
this.updateState(it => it.reset())
|
||||||
this.timerId = setInterval(() => {
|
this.timerId = setInterval(() => {
|
||||||
this.getModel().step()
|
this.updateState(it => it.step())
|
||||||
|
if (this.getState().state === State.fail) {
|
||||||
|
loge('Game Over')
|
||||||
|
this.stop()
|
||||||
|
}
|
||||||
}, 500)
|
}, 500)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -252,56 +318,23 @@ class SnakeVM extends ViewModel<SnakeModel, SnakeView>{
|
|||||||
}
|
}
|
||||||
|
|
||||||
left = () => {
|
left = () => {
|
||||||
this.getModel().direction = Direction.left
|
this.updateState(it => it.direction = Direction.left)
|
||||||
}
|
}
|
||||||
|
|
||||||
right = () => {
|
right = () => {
|
||||||
this.getModel().direction = Direction.right
|
this.updateState(it => it.direction = Direction.right)
|
||||||
}
|
}
|
||||||
|
|
||||||
up = () => {
|
up = () => {
|
||||||
this.getModel().direction = Direction.up
|
this.updateState(it => it.direction = Direction.up)
|
||||||
}
|
}
|
||||||
|
|
||||||
down = () => {
|
down = () => {
|
||||||
this.getModel().direction = Direction.down
|
this.updateState(it => it.direction = Direction.down)
|
||||||
}
|
}
|
||||||
|
|
||||||
binding(v: SnakeView, model: SnakeModel) {
|
onAttached(state: SnakeModel, v: SnakeView): void {
|
||||||
if (model.state === State.fail) {
|
|
||||||
loge('Game Over')
|
|
||||||
this.stop()
|
|
||||||
}
|
|
||||||
v.start.onClick = this.start
|
v.start.onClick = this.start
|
||||||
v.panel.width = model.width * 10
|
|
||||||
v.panel.height = model.height * 10
|
|
||||||
let node: SnakeNode | undefined = model.head
|
|
||||||
let nodes: SnakeNode[] = []
|
|
||||||
while (node != undefined) {
|
|
||||||
nodes.push(node)
|
|
||||||
node = node.next
|
|
||||||
}
|
|
||||||
nodes.push(model.food)
|
|
||||||
nodes.forEach((e, index) => {
|
|
||||||
|
|
||||||
let item = v.panel.children[index]
|
|
||||||
if (item === undefined) {
|
|
||||||
item = new Stack
|
|
||||||
item.width = item.height = 10
|
|
||||||
v.panel.addChild(item)
|
|
||||||
}
|
|
||||||
if (index === nodes.length - 1) {
|
|
||||||
item.bgColor = Color.parse('#ffff00')
|
|
||||||
} else {
|
|
||||||
item.bgColor = Color.parse('#ff0000')
|
|
||||||
}
|
|
||||||
item.x = e.x * 10
|
|
||||||
item.y = e.y * 10
|
|
||||||
})
|
|
||||||
|
|
||||||
if (nodes.length < v.panel.children.length) {
|
|
||||||
v.panel.children.length = nodes.length
|
|
||||||
}
|
|
||||||
if (v.left) {
|
if (v.left) {
|
||||||
v.left.onClick = this.left
|
v.left.onClick = this.left
|
||||||
}
|
}
|
||||||
@ -315,19 +348,17 @@ class SnakeVM extends ViewModel<SnakeModel, SnakeView>{
|
|||||||
v.down.onClick = this.down
|
v.down.onClick = this.down
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@Entry
|
@Entry
|
||||||
class SnakePanel extends VMPanel<SnakeModel, SnakeView>{
|
class SnakePanel extends VMPanel<SnakeModel, SnakeView>{
|
||||||
|
getViewModelClass() {
|
||||||
getVMClass() {
|
|
||||||
return SnakeVM
|
return SnakeVM
|
||||||
}
|
}
|
||||||
|
getState(): SnakeModel {
|
||||||
getModel() {
|
|
||||||
return new SnakeModel(35, 35)
|
return new SnakeModel(35, 35)
|
||||||
}
|
}
|
||||||
|
getViewHolderClass() {
|
||||||
getViewHolder() {
|
return SnakeView
|
||||||
return new SnakeView
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -43,22 +43,25 @@ export abstract class ViewModel<M extends Object, V extends ViewHolder<M>> {
|
|||||||
|
|
||||||
attach(view: Group) {
|
attach(view: Group) {
|
||||||
this.viewHolder.build(view)
|
this.viewHolder.build(view)
|
||||||
|
this.viewHolder.bind(this.state)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
abstract onAttached(state: M, vh: V): void
|
||||||
}
|
}
|
||||||
export type ViewModelClass<M> = new (m: M, v: ViewHolder<M>) => ViewModel<M, ViewHolder<M>>
|
export type ViewModelClass<M, V extends ViewHolder<M>> = new (m: M, v: V) => ViewModel<M, V>
|
||||||
|
|
||||||
export type ViewHolderClass<M> = new () => ViewHolder<M>
|
export type ViewHolderClass<V> = new () => V
|
||||||
|
|
||||||
export abstract class VMPanel<M extends Object> extends Panel {
|
export abstract class VMPanel<M extends Object, V extends ViewHolder<M>> extends Panel {
|
||||||
|
|
||||||
private vm?: ViewModel<M, ViewHolder<M>>
|
private vm?: ViewModel<M, V>
|
||||||
private vh?: ViewHolder<M>
|
private vh?: V
|
||||||
|
|
||||||
abstract getViewModelClass(): ViewModelClass<M>
|
abstract getViewModelClass(): ViewModelClass<M, V>
|
||||||
|
|
||||||
abstract getState(): M
|
abstract getState(): M
|
||||||
|
|
||||||
abstract getViewHolderClass(): ViewHolderClass<M>
|
abstract getViewHolderClass(): ViewHolderClass<V>
|
||||||
|
|
||||||
getViewModel() {
|
getViewModel() {
|
||||||
return this.vm
|
return this.vm
|
||||||
|
Reference in New Issue
Block a user