-
Notifications
You must be signed in to change notification settings - Fork 1
/
game_func.go
147 lines (122 loc) · 3.02 KB
/
game_func.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
package telebot
import (
"encoding/json"
"fmt"
)
func (b *bot) SendGame(to Recipient, gameShortName string, options ...any) (*AccessibleMessage, error) {
params := sendGameRequest{
ChatID: to.Recipient(),
GameShortName: gameShortName,
}
for _, option := range options {
switch v := option.(type) {
case *MessageThreadID:
params.ThreadID = v
case ReplyMarkup:
params.ReplyMarkup = v
case *ReplyParameters:
params.ReplyParameters = v
case Option:
switch v {
case Silent:
params.DisableNotification = toPtr(true)
case Protected:
params.Protected = toPtr(true)
}
default:
panic("telebot: unknown option type " + fmt.Sprintf("%T", v) + " in SendGame.")
}
}
var resp struct {
Result *AccessibleMessage
}
req, err := b.sendMethodRequest(methodSendGame, params)
if err != nil {
return nil, err
}
if err = json.Unmarshal(req, &resp); err != nil {
return nil, err
}
return resp.Result, nil
}
func (b *bot) SetGameScore(msg Message, userID Userable, score uint, options ...any) (*AccessibleMessage, error) {
chat, msgID := msg.MessageSig()
params := setGameScore{
ChatID: chat,
MessageID: msgID,
UserID: userID,
Score: score,
}
for _, option := range options {
switch v := option.(type) {
case Option:
switch v {
case ForceGameScoreUpdate:
params.Force = toPtr(true)
case DisableGameEditMessage:
params.DisableEditMessage = toPtr(true)
}
default:
panic("telebot: unknown option type " + fmt.Sprintf("%T", v) + " in SetGameScore.")
}
}
var resp struct {
Result *AccessibleMessage
}
req, err := b.sendMethodRequest(methodSetGameScore, params)
if err != nil {
return nil, err
}
if err = json.Unmarshal(req, &resp); err != nil {
return nil, err
}
return resp.Result, nil
}
func (b *bot) SetGameScoreInline(inlineMessageID string, userID Userable, score uint, options ...any) error {
params := setGameScore{
InlineMessageID: inlineMessageID,
UserID: userID,
Score: score,
}
for _, option := range options {
switch v := option.(type) {
case Option:
switch v {
case ForceGameScoreUpdate:
params.Force = toPtr(true)
case DisableGameEditMessage:
params.DisableEditMessage = toPtr(true)
}
default:
panic("telebot: unknown option type " + fmt.Sprintf("%T", v) + " in SetGameScore.")
}
}
_, err := b.sendMethodRequest(methodSetGameScore, params)
return err
}
func (b *bot) GetGameHighScores(user Userable, options ...any) ([]GameHighScore, error) {
params := getGameHighScores{
UserID: user,
}
for _, option := range options {
switch v := option.(type) {
case Message:
chat, msgID := v.MessageSig()
params.ChatID = chat
params.MessageID = msgID
case string:
params.InlineMessageID = v
}
}
var resp struct {
Result []GameHighScore `json:"result"`
}
req, err := b.sendMethodRequest(methodGetGameHighScores, params)
if err != nil {
return nil, err
}
if err = json.Unmarshal(req, &resp); err != nil {
return nil, err
}
return resp.Result, nil
}