mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-05-20 01:26:23 +00:00
perf[net]: 增加新的packet类型TripleLLS
This commit is contained in:
@@ -53,7 +53,6 @@
|
||||
- [问题讨论群QQ: 876280300](https://qm.qq.com/cgi-bin/qm/qr?k=uSo2FnXz50i5UZ1LYZS1sPsVWW9A34v-&jump_from=webapi) <a target="_blank" href="https://qm.qq.com/cgi-bin/qm/qr?k=uSo2FnXz50i5UZ1LYZS1sPsVWW9A34v-&jump_from=webapi"><img src="https://img.shields.io/badge/qq%E8%AE%A8%E8%AE%BA%E7%BE%A4-876280300-green"/></a>
|
||||
|
||||
|
||||
- [zfoo 视频教程](./doc/视频教程.md),持续更新中
|
||||
- [tank-game-server](https://github.com/zfoo-project/tank-game-server) 网络游戏《进击的坦克(The Fight of Tanks)》,新手友好,难度2星
|
||||
- 快速体验,tank游戏入口 [tank.zfoo.net](http://tank.zfoo.net)
|
||||
- 快速体验,tank后台管理 [tank-admin.zfoo.net](http://tank-admin.zfoo.net)
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* Copyright (C) 2020 The zfoo Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
||||
* in compliance with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
|
||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and limitations under the License.
|
||||
*/
|
||||
|
||||
package com.zfoo.net.packet.common;
|
||||
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import com.zfoo.protocol.IPacket;
|
||||
|
||||
/**
|
||||
* @author jaysunxiao
|
||||
* @version 3.0
|
||||
*/
|
||||
public class TripleLLS implements IPacket {
|
||||
|
||||
public static final transient short PROTOCOL_ID = 117;
|
||||
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private long left;
|
||||
@JsonSerialize(using = ToStringSerializer.class)
|
||||
private long middle;
|
||||
private String right;
|
||||
|
||||
public static TripleLLS valueOf(long left, long middle, String right) {
|
||||
var triple = new TripleLLS();
|
||||
triple.left = left;
|
||||
triple.middle = middle;
|
||||
triple.right = right;
|
||||
return triple;
|
||||
}
|
||||
|
||||
@Override
|
||||
public short protocolId() {
|
||||
return PROTOCOL_ID;
|
||||
}
|
||||
|
||||
public long getLeft() {
|
||||
return left;
|
||||
}
|
||||
|
||||
public void setLeft(long left) {
|
||||
this.left = left;
|
||||
}
|
||||
|
||||
public long getMiddle() {
|
||||
return middle;
|
||||
}
|
||||
|
||||
public void setMiddle(long middle) {
|
||||
this.middle = middle;
|
||||
}
|
||||
|
||||
public String getRight() {
|
||||
return right;
|
||||
}
|
||||
|
||||
public void setRight(String right) {
|
||||
this.right = right;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user