fix example
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
parent
b1cfa9ee45
commit
457798b0e3
@ -2,7 +2,6 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
|
||||||
"image"
|
"image"
|
||||||
"log"
|
"log"
|
||||||
"math"
|
"math"
|
||||||
@ -13,7 +12,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
ln, err := net.Listen("tcp", ":5900")
|
ln, err := net.Listen("tcp", ":6900")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Error listen. %v", err)
|
log.Fatalf("Error listen. %v", err)
|
||||||
}
|
}
|
||||||
@ -22,12 +21,13 @@ func main() {
|
|||||||
chClient := make(chan vnc.ServerMessage)
|
chClient := make(chan vnc.ServerMessage)
|
||||||
|
|
||||||
im := image.NewRGBA(image.Rect(0, 0, width, height))
|
im := image.NewRGBA(image.Rect(0, 0, width, height))
|
||||||
tick := time.NewTicker(time.Second / 2)
|
tick := time.NewTicker(time.Millisecond * 2)
|
||||||
defer tick.Stop()
|
defer tick.Stop()
|
||||||
|
connected := false
|
||||||
|
|
||||||
cfg := &vnc.ServerConfig{
|
cfg := &vnc.ServerConfig{
|
||||||
Width: 800,
|
Width: width,
|
||||||
Height: 600,
|
Height: height,
|
||||||
Handlers: vnc.DefaultServerHandlers,
|
Handlers: vnc.DefaultServerHandlers,
|
||||||
SecurityHandlers: []vnc.SecurityHandler{&vnc.ClientAuthNone{}},
|
SecurityHandlers: []vnc.SecurityHandler{&vnc.ClientAuthNone{}},
|
||||||
Encodings: []vnc.Encoding{&vnc.RawEncoding{}},
|
Encodings: []vnc.Encoding{&vnc.RawEncoding{}},
|
||||||
@ -37,23 +37,54 @@ func main() {
|
|||||||
Messages: vnc.DefaultClientMessages,
|
Messages: vnc.DefaultClientMessages,
|
||||||
}
|
}
|
||||||
go vnc.Serve(context.Background(), ln, cfg)
|
go vnc.Serve(context.Background(), ln, cfg)
|
||||||
|
anim := 0
|
||||||
// Process messages coming in on the ClientMessage channel.
|
// Process messages coming in on the ClientMessage channel.
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-tick.C:
|
case <-tick.C:
|
||||||
drawImage(im, 0)
|
if !connected {
|
||||||
fmt.Printf("tick\n")
|
continue
|
||||||
case msg := <-chClient:
|
|
||||||
switch msg.Type() {
|
|
||||||
default:
|
|
||||||
log.Printf("11 Received message type:%v msg:%v\n", msg.Type(), msg)
|
|
||||||
}
|
}
|
||||||
|
drawImage(im, anim*2)
|
||||||
|
anim++
|
||||||
|
colors := make([]vnc.Color, 0, 0)
|
||||||
|
for y := 0; y < height; y++ {
|
||||||
|
for x := 0; x < width; x++ {
|
||||||
|
r, g, b, a := im.At(x, y).RGBA()
|
||||||
|
clr := rgbaToColor(&cfg.PixelFormat, r, g, b, a)
|
||||||
|
colors = append(colors, *clr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cfg.ServerMessageCh <- &vnc.FramebufferUpdate{
|
||||||
|
NumRect: 1,
|
||||||
|
Rects: []*vnc.Rectangle{
|
||||||
|
&vnc.Rectangle{
|
||||||
|
X: 0,
|
||||||
|
Y: 0,
|
||||||
|
Width: width,
|
||||||
|
Height: height,
|
||||||
|
EncType: vnc.EncRaw,
|
||||||
|
Enc: &vnc.RawEncoding{
|
||||||
|
Colors: colors,
|
||||||
|
},
|
||||||
|
}}}
|
||||||
|
/*
|
||||||
|
case msg := <-chClient:
|
||||||
|
switch msg.Type() {
|
||||||
|
case vnc.FramebufferUpdateMsgType:
|
||||||
|
connected = true
|
||||||
|
log.Printf("11 Received message type:%v msg:%v\n", msg.Type(), msg)
|
||||||
|
default:
|
||||||
|
log.Printf("11 Received message type:%v msg:%v\n", msg.Type(), msg)
|
||||||
|
}*/
|
||||||
case msg := <-chServer:
|
case msg := <-chServer:
|
||||||
switch msg.Type() {
|
switch msg.Type() {
|
||||||
|
case vnc.FramebufferUpdateRequestMsgType:
|
||||||
|
connected = true
|
||||||
default:
|
default:
|
||||||
log.Printf("22 Received message type:%v msg:%v\n", msg.Type(), msg)
|
log.Printf("22 Received message type:%v msg:%v\n", msg.Type(), msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -63,6 +94,15 @@ const (
|
|||||||
height = 600
|
height = 600
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func rgbaToColor(pf *vnc.PixelFormat, r uint32, g uint32, b uint32, a uint32) *vnc.Color {
|
||||||
|
// fix converting rbga to rgb http://marcodiiga.github.io/rgba-to-rgb-conversion
|
||||||
|
clr := vnc.NewColor(pf, nil)
|
||||||
|
clr.R = uint16(r / 257)
|
||||||
|
clr.G = uint16(g / 257)
|
||||||
|
clr.B = uint16(b / 257)
|
||||||
|
return clr
|
||||||
|
}
|
||||||
|
|
||||||
func drawImage(im *image.RGBA, anim int) {
|
func drawImage(im *image.RGBA, anim int) {
|
||||||
pos := 0
|
pos := 0
|
||||||
const border = 50
|
const border = 50
|
||||||
|
Loading…
Reference in New Issue
Block a user