screens_service.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. package protocol
  2. import (
  3. "bytes"
  4. "encoding/binary"
  5. "fmt"
  6. "github.com/valyala/bytebufferpool"
  7. "golang.org/x/text/encoding/simplifiedchinese"
  8. "golang.org/x/text/transform"
  9. "io/ioutil"
  10. promodel "server/model/common/devices"
  11. "strconv"
  12. "time"
  13. )
  14. // 认证登录 (这里设置了默认心跳时间为60s)
  15. func (x AuthDataPack) AuthLogin() *bytebufferpool.ByteBuffer {
  16. buf := bytebufferpool.Get()
  17. x.Head = []byte{0xFE, 0x5C, 0x4B, 0x89}
  18. x.Len = []byte{0x2A, 0x00, 0x00, 0x00}
  19. x.Type = 0x62
  20. x.Id = []byte{0x00, 0x00, 0x00, 0x00}
  21. x.DataLen = []byte{0x17, 0x00, 0x00, 0x00}
  22. x.Result = 0x31
  23. x.Separator1 = 0x23
  24. x.Separator2 = 0x23
  25. x.HeartBeat = []byte{0x30, 0x36, 0x30} //默认060, 60秒发一次心跳
  26. x.EndSeparator = 0x23
  27. x.End = []byte{0xFF, 0xFF}
  28. buf.Write(x.Head)
  29. buf.Write(x.Len)
  30. buf.WriteByte(x.Type)
  31. buf.Write(x.Id)
  32. buf.Write(x.DataLen)
  33. buf.WriteByte(x.Result)
  34. buf.WriteByte(x.Separator1)
  35. slice := GetNowDate()
  36. TmpData := make([]byte, len(slice))
  37. for i, s := range slice {
  38. TmpData[i] = byte(s) + 0x30
  39. }
  40. x.Time = TmpData
  41. buf.Write(x.Time)
  42. buf.WriteByte(x.Separator2)
  43. buf.Write(x.HeartBeat)
  44. buf.WriteByte(x.EndSeparator)
  45. buf.Write(x.End)
  46. //fmt.Println("TmpData: ", hex.EncodeToString(buf.Bytes()))
  47. //fmt.Println("TmpData: ", buf.Bytes())
  48. return buf
  49. }
  50. // 开关屏幕
  51. func (x SwitchDataPack) SwitchScreens() *bytebufferpool.ByteBuffer {
  52. buf := bytebufferpool.Get()
  53. x.Head = []byte{0xFE, 0x5C, 0x4B, 0x89}
  54. x.Len = []byte{0x13, 0x00, 0x00, 0x00}
  55. x.Id = []byte{0x00, 0x00, 0x00, 0x00}
  56. x.Reserve = []byte{0x00, 0x00, 0x00, 0x00}
  57. x.End = []byte{0xFF, 0xFF}
  58. buf.Write(x.Head)
  59. buf.Write(x.Len)
  60. buf.WriteByte(x.Type)
  61. buf.Write(x.Id)
  62. buf.Write(x.Reserve)
  63. buf.Write(x.End)
  64. return buf
  65. }
  66. // 发送内码文字
  67. func (x InternalCodeDataPack) SendInternalCode(content []promodel.InternalCodeContent) *bytebufferpool.ByteBuffer {
  68. buf := bytebufferpool.Get()
  69. x.Head = []byte{0xFE, 0x5C, 0x4B, 0x89}
  70. x.Type = 0x31
  71. x.Id = []byte{0x00, 0x00, 0x00, 0x00}
  72. //封装控制指令内容
  73. for i, codeContent := range content {
  74. //拼接素材ID 000000001
  75. UidStr := fmt.Sprintf("%09d", i+1)
  76. //给每一项加0x30
  77. uidByte := EachItemAdd(UidStr)
  78. //将内容转GB2312编码格式
  79. gbk, contentLen, _ := Utf8ToGbk([]byte(codeContent.Text))
  80. //获取素材内容长度
  81. contentLenBytes := GetBytesArrYes(contentLen+10, 4)
  82. ICD := InternalCodeData{
  83. MaterialId: uidByte, //素材ID
  84. CharacterColor: codeContent.Color, //字符颜色
  85. TextSize: codeContent.Size, //字体大小
  86. ControlCode2: []byte{byte(i + 1), 0x00}, //控制码2
  87. MaterialContentLen: contentLenBytes, //素材内容长度
  88. MaterialContent: gbk, //素材内容
  89. }
  90. ContentBuf := ICD.AppendInternalCodeContent()
  91. x.Data = append(x.Data, ContentBuf.Bytes()...)
  92. }
  93. x.Len = GetBytesArrYes(uint8(len(x.Data))+22, 4)
  94. x.DataLen = GetBytesArrYes(uint8(len(x.Data))+3, 4)
  95. x.EndSign = []byte{0x2D, 0x31, 0x2C}
  96. x.End = []byte{0xFF, 0xFF}
  97. buf.Write(x.Head)
  98. buf.Write(x.Len)
  99. buf.WriteByte(x.Type)
  100. buf.Write(x.Id)
  101. buf.Write(x.DataLen)
  102. buf.Write(x.Data)
  103. buf.Write(x.EndSign)
  104. buf.Write(x.End)
  105. return buf
  106. }
  107. func (x InternalCodeData) AppendInternalCodeContent() *bytebufferpool.ByteBuffer {
  108. buf := bytebufferpool.Get()
  109. x.Separator = 0x2C
  110. x.DisplayMode = 0x09
  111. x.DisplaySpeed = 0x01
  112. x.StopTime = 0xFF // 静止显示
  113. x.PlayingPeriod = []byte{0x30, 0x31, 0x30, 0x31, 0x30, 0x31, 0x39, 0x39, 0x31, 0x32, 0x33, 0x31}
  114. x.MaterialAttribLen = []byte{0x13, 0x00, 0x00, 0x00}
  115. x.MaterialStartFlag = []byte{0x55, 0xAA}
  116. x.ReservedWord1 = 0x00
  117. x.TextRotation = 0x01
  118. x.MaterialAttrib = 0x37
  119. x.MaterialStorageMode = 0x32
  120. x.MaterialUpdateMode = 0x31
  121. x.TextStartSign = 0x31
  122. x.ScreenColor = 0x32
  123. x.PictureCodeMode = 0x31
  124. x.ReservedWord2 = []byte{0x00, 0x00}
  125. x.Width = []byte{0x0C, 0x00} //宽:96/8=12 也就是0x0C
  126. x.Height = []byte{0x18, 0x00} //高:24 也就是0x18
  127. x.ReservedWord3 = 0x00
  128. x.ControlCode1 = []byte{0xFF, 0x00}
  129. x.ControlCode3 = []byte{0x01, 0x00, 0x01, 0x00}
  130. x.ReservedWord4 = []byte{0x00, 0x00}
  131. buf.Write(x.MaterialId)
  132. buf.WriteByte(x.Separator)
  133. buf.WriteByte(x.DisplayMode)
  134. buf.WriteByte(x.DisplaySpeed)
  135. buf.WriteByte(x.StopTime)
  136. buf.Write(x.PlayingPeriod)
  137. buf.Write(x.MaterialAttribLen)
  138. buf.Write(x.MaterialStartFlag)
  139. buf.WriteByte(x.ReservedWord1)
  140. buf.WriteByte(x.TextRotation)
  141. buf.WriteByte(x.MaterialAttrib)
  142. buf.WriteByte(x.MaterialStorageMode)
  143. buf.WriteByte(x.MaterialUpdateMode)
  144. buf.WriteByte(x.TextStartSign)
  145. buf.WriteByte(x.ScreenColor)
  146. buf.WriteByte(x.PictureCodeMode)
  147. buf.Write(x.ReservedWord2)
  148. buf.Write(x.Width)
  149. buf.Write(x.Height)
  150. buf.WriteByte(x.CharacterColor)
  151. buf.WriteByte(x.TextSize)
  152. buf.WriteByte(x.ReservedWord3)
  153. buf.Write(x.MaterialContentLen)
  154. buf.Write(x.MaterialContent)
  155. buf.Write(x.ControlCode1)
  156. buf.Write(x.ControlCode2)
  157. buf.Write(x.ControlCode3)
  158. buf.Write(x.ReservedWord4)
  159. return buf
  160. }
  161. // 远程喊话
  162. func (x VoiceBroadDataPack) VoiceBroad(broad string) *bytebufferpool.ByteBuffer {
  163. buf := bytebufferpool.Get()
  164. x.Head = []byte{0xFE, 0x5C, 0x4B, 0x89}
  165. x.Type = 0x68
  166. x.ForwardPort = 0x02 //转发端口
  167. x.Id = []byte{0x00, 0x00, 0x00}
  168. x.End = []byte{0xFF, 0xFF}
  169. //将语音内容字符串转字节数组,并获取其长度供给内容长度使用
  170. gbk, contentLen, _ := Utf8ToGbk([]byte(broad))
  171. contentLenBytes := GetBytesArrNo(contentLen+2, 2)
  172. data := VoiceBroadData{
  173. BroadContentLen: contentLenBytes,
  174. BroadContent: gbk,
  175. }
  176. contentByte := data.AppendVoiceBroadContent()
  177. x.Data = contentByte.Bytes()
  178. //帧头到保留字刚好是控制指令长度
  179. x.DataLen = GetBytesArrYes(uint8(len(x.Data)), 4)
  180. x.Len = GetBytesArrYes(uint8(len(x.Data)+19), 4)
  181. buf.Write(x.Head)
  182. buf.Write(x.Len)
  183. buf.WriteByte(x.Type)
  184. buf.WriteByte(x.ForwardPort)
  185. buf.Write(x.Id)
  186. buf.Write(x.DataLen)
  187. buf.Write(x.Data)
  188. buf.Write(x.End)
  189. return buf
  190. }
  191. func (x VoiceBroadData) AppendVoiceBroadContent() *bytebufferpool.ByteBuffer {
  192. buf := bytebufferpool.Get()
  193. x.FrameHeader = 0xFD
  194. x.BroadWord = 0x01
  195. x.BroadEncodeFormat = []byte{0x00} //编码格式
  196. /*0x5B, 0x6D, 0x35, 0x32, 0x5D, //男2声
  197. 0x5B, 0x73, 0x35, 0x5D, //中语速
  198. 0x5B, 0x76, 0x31, 0x30, 0x5D*/ //高音量
  199. x.ReservedWord = []byte{0x00, 0x00}
  200. buf.WriteByte(x.FrameHeader)
  201. buf.Write(x.BroadContentLen)
  202. buf.WriteByte(x.BroadWord)
  203. buf.Write(x.BroadEncodeFormat)
  204. buf.Write(x.BroadContent)
  205. buf.Write(x.ReservedWord)
  206. return buf
  207. }
  208. // 调节亮度
  209. func (x SetBrightnessDataPack) SetBrightness(brightLevel byte) *bytebufferpool.ByteBuffer {
  210. buf := bytebufferpool.Get()
  211. x.Head = []byte{0xFE, 0x5C, 0x4B, 0x89}
  212. x.Len = []byte{0x17, 0x00, 0x00, 0x00}
  213. x.Type = 0x76
  214. x.Id = []byte{0x00, 0x00, 0x00, 0x00}
  215. x.DataLen = []byte{0x04, 0x00, 0x00, 0x00}
  216. data := SetBrightnessData{ControlPriority: 0x02,
  217. ControlPriorityInverse: 0xFD,
  218. BrightnessLevel: brightLevel,
  219. BrightnessLevelInverse: ^brightLevel, //取反码
  220. }
  221. buffer := data.AppendSetBrightnessContent()
  222. x.Data = buffer.Bytes()
  223. x.End = []byte{0xFF, 0xFF}
  224. buf.Write(x.Head)
  225. buf.Write(x.Len)
  226. buf.WriteByte(x.Type)
  227. buf.Write(x.Id)
  228. buf.Write(x.DataLen)
  229. buf.Write(x.Data)
  230. buf.Write(x.End)
  231. return buf
  232. }
  233. func (x SetBrightnessData) AppendSetBrightnessContent() *bytebufferpool.ByteBuffer {
  234. buf := bytebufferpool.Get()
  235. buf.WriteByte(x.ControlPriority)
  236. buf.WriteByte(x.ControlPriorityInverse)
  237. buf.WriteByte(x.BrightnessLevel)
  238. buf.WriteByte(x.BrightnessLevelInverse)
  239. return buf
  240. }
  241. func GetNowDate() (dateSlice [16]int) {
  242. now := time.Now()
  243. year, month, day := now.Date()
  244. hour, minute, second := now.Clock()
  245. weekday := int(now.Weekday()) // 0表示星期天,1表示星期一,依此类推
  246. if weekday == 0 {
  247. weekday = 7 // 将星期天设为07
  248. }
  249. // 格式化
  250. Y := fmt.Sprintf("%d", year)
  251. M := fmt.Sprintf("%02d", month) // 将月份转换为两位数字
  252. D := fmt.Sprintf("%02d", day) // 将日期转换为两位数字
  253. H := fmt.Sprintf("%02d", hour) // 将小时转换为两位数字
  254. Min := fmt.Sprintf("%02d", minute) // 将分钟转换为两位数字
  255. S := fmt.Sprintf("%02d", second) // 将秒数转换为两位数字
  256. W := fmt.Sprintf("%02d", weekday) // 将星期几转换为两位数字
  257. dateStr := Y + M + D + W + H + Min + S
  258. for i, _ := range dateStr {
  259. num, _ := strconv.Atoi(string(dateStr[i]))
  260. dateSlice[i] = num
  261. }
  262. return dateSlice
  263. }
  264. func Utf8ToGbk(s []byte) ([]byte, uint8, error) {
  265. reader := transform.NewReader(bytes.NewReader(s), simplifiedchinese.GBK.NewEncoder())
  266. d, e := ioutil.ReadAll(reader)
  267. u := uint8(len(d))
  268. if e != nil {
  269. return nil, u, e
  270. }
  271. return d, u, nil
  272. }
  273. // 传入数字字符串给每一项加0x30
  274. func EachItemAdd(strArr string) []byte {
  275. var byteArr = make([]byte, len(strArr))
  276. for i, _ := range strArr {
  277. num, _ := strconv.Atoi(string(strArr[i]))
  278. byteArr[i] = byte(num) + 0x30
  279. }
  280. return byteArr
  281. }
  282. // 获取字节数组(低字节在前,高字节在后,要倒转)
  283. func GetBytesArrYes(param uint8, ByteLen int) []byte {
  284. byteArray := make([]byte, ByteLen)
  285. // 将输入的整数转换为字节并存储在字节数组中
  286. if ByteLen >= 4 {
  287. binary.BigEndian.PutUint32(byteArray[ByteLen-4:], uint32(param))
  288. } else {
  289. for i := 0; i < ByteLen; i++ {
  290. byteArray[ByteLen-1-i] = byte(param >> (8 * i)) // 右移并放置到正确位置
  291. }
  292. }
  293. return Rotate(byteArray)
  294. }
  295. // 获取字节数组(低字节在后,高字节在前,不需要倒转)
  296. func GetBytesArrNo(param uint8, ByteLen int) []byte {
  297. byteArray := make([]byte, ByteLen)
  298. // 将输入的整数转换为字节并存储在字节数组中
  299. if ByteLen >= 4 {
  300. binary.BigEndian.PutUint32(byteArray[ByteLen-4:], uint32(param))
  301. } else {
  302. for i := 0; i < ByteLen; i++ {
  303. byteArray[ByteLen-1-i] = byte(param >> (8 * i)) // 右移并放置到正确位置
  304. }
  305. }
  306. return byteArray
  307. }
  308. // 低位字节在前,高位字节在后
  309. func Rotate(ss []byte) []byte {
  310. ret := make([]byte, len(ss))
  311. copy(ret, ss)
  312. left, rigth := 0, 0
  313. if len(ret)%2 == 0 {
  314. left = len(ret)/2 - 1
  315. rigth = len(ret) / 2
  316. } else {
  317. left = len(ret)/2 - 1
  318. rigth = len(ret)/2 + 1
  319. }
  320. for ; left >= 0 || rigth <= len(ret)-1; left, rigth = left-1, rigth+1 {
  321. ret[left], ret[rigth] = ret[rigth], ret[left]
  322. }
  323. return ret
  324. }