2024-06-02 02:58:09 +00:00
|
|
|
package main
|
2024-06-01 02:34:53 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
2024-06-01 03:01:48 +00:00
|
|
|
"os"
|
2024-06-01 02:34:53 +00:00
|
|
|
"time"
|
2024-06-06 04:51:18 +00:00
|
|
|
|
2024-06-20 04:10:22 +00:00
|
|
|
"github.com/teeworlds-go/teeworlds/messages7"
|
2024-06-19 04:57:32 +00:00
|
|
|
"github.com/teeworlds-go/teeworlds/network7"
|
2024-06-19 04:36:14 +00:00
|
|
|
"github.com/teeworlds-go/teeworlds/protocol7"
|
2024-06-01 02:34:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2024-06-01 03:45:32 +00:00
|
|
|
maxPacksize = 1400
|
2024-06-01 02:34:53 +00:00
|
|
|
)
|
|
|
|
|
2024-06-01 03:01:48 +00:00
|
|
|
func getConnection() (net.Conn, error) {
|
2024-06-01 02:34:53 +00:00
|
|
|
conn, err := net.Dial("udp", "127.0.0.1:8303")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Some error %v", err)
|
|
|
|
}
|
2024-06-01 03:01:48 +00:00
|
|
|
return conn, err
|
|
|
|
}
|
2024-06-01 02:34:53 +00:00
|
|
|
|
2024-06-01 10:27:54 +00:00
|
|
|
func readNetwork(ch chan<- []byte, conn net.Conn) {
|
2024-06-17 03:37:44 +00:00
|
|
|
buf := make([]byte, maxPacksize)
|
2024-06-01 02:34:53 +00:00
|
|
|
|
|
|
|
for {
|
2024-06-17 03:37:44 +00:00
|
|
|
len, err := bufio.NewReader(conn).Read(buf)
|
|
|
|
packet := make([]byte, len)
|
|
|
|
copy(packet[:], buf[:])
|
2024-06-01 02:34:53 +00:00
|
|
|
if err == nil {
|
|
|
|
ch <- packet
|
|
|
|
} else {
|
|
|
|
fmt.Printf("Some error %v\n", err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
conn.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
ch := make(chan []byte, maxPacksize)
|
|
|
|
|
2024-06-01 03:01:48 +00:00
|
|
|
conn, err := getConnection()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("error connecting %v\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2024-06-19 04:36:14 +00:00
|
|
|
client := &protocol7.Connection{
|
|
|
|
ClientToken: [4]byte{0x01, 0x02, 0x03, 0x04},
|
|
|
|
ServerToken: [4]byte{0xff, 0xff, 0xff, 0xff},
|
2024-06-18 05:08:56 +00:00
|
|
|
Ack: 0,
|
2024-06-19 04:57:32 +00:00
|
|
|
Players: make([]protocol7.Player, network7.MaxClients),
|
2024-06-01 03:45:32 +00:00
|
|
|
}
|
|
|
|
|
2024-06-20 03:19:54 +00:00
|
|
|
go readNetwork(ch, conn)
|
2024-06-01 03:01:48 +00:00
|
|
|
|
2024-06-20 04:29:26 +00:00
|
|
|
tokenPacket := client.CtrlToken()
|
|
|
|
conn.Write(tokenPacket.Pack(client))
|
2024-06-01 02:34:53 +00:00
|
|
|
|
|
|
|
for {
|
|
|
|
time.Sleep(10_000_000)
|
|
|
|
select {
|
|
|
|
case msg := <-ch:
|
2024-06-20 04:29:26 +00:00
|
|
|
result, err := client.OnPacket(msg)
|
2024-06-20 03:08:52 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2024-06-20 04:29:26 +00:00
|
|
|
if result.Response != nil {
|
2024-06-20 04:10:22 +00:00
|
|
|
|
2024-06-20 05:27:46 +00:00
|
|
|
// example of inspecting incoming trafic
|
|
|
|
for i, msg := range result.Packet.Messages {
|
|
|
|
if msg.MsgId() == network7.MsgGameSvChat {
|
|
|
|
var chat *messages7.SvChat
|
|
|
|
var ok bool
|
|
|
|
if chat, ok = result.Packet.Messages[i].(*messages7.SvChat); ok {
|
|
|
|
fmt.Printf("got chat msg: %s\n", chat.Message)
|
|
|
|
|
|
|
|
// modify chat if this was a proxy
|
|
|
|
result.Response.Messages[i] = chat
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-20 04:10:22 +00:00
|
|
|
// example of modifying outgoing traffic
|
2024-06-20 04:29:26 +00:00
|
|
|
for i, msg := range result.Response.Messages {
|
2024-06-20 04:10:22 +00:00
|
|
|
if msg.MsgId() == network7.MsgCtrlConnect {
|
2024-06-20 05:07:10 +00:00
|
|
|
var connect *messages7.CtrlConnect
|
|
|
|
var ok bool
|
2024-06-20 05:27:46 +00:00
|
|
|
if connect, ok = result.Response.Messages[i].(*messages7.CtrlConnect); ok {
|
2024-06-20 04:10:22 +00:00
|
|
|
connect.Token = [4]byte{0xaa, 0xaa, 0xaa, 0xaa}
|
2024-06-20 04:29:26 +00:00
|
|
|
result.Response.Messages[i] = connect
|
2024-06-20 04:10:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-20 04:29:26 +00:00
|
|
|
conn.Write(result.Response.Pack(client))
|
2024-06-20 03:08:52 +00:00
|
|
|
}
|
2024-06-01 02:34:53 +00:00
|
|
|
default:
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|