FreeKill/lua/vscode/player.lua

65 lines
1.5 KiB
Lua
Raw Normal View History

2022-03-30 08:33:56 +00:00
---@meta
---@class freekill.Player
FPlayer = {}
---@return number id
function FPlayer:getId()end
---@param id number
function FPlayer:setId(id)end
---@return string name
function FPlayer:getScreenName()end
---@param name string
function FPlayer:setScreenName(name)end
---@return string avatar
function FPlayer:getAvatar()end
---@param avatar string
function FPlayer:setAvatar(avatar)end
---@return string state
function FPlayer:getStateString()end
---@param state string
function FPlayer:setStateString(state)end
---@class freekill.ServerPlayer : freekill.Player
FServerPlayer = {}
---@return freekill.Server
function FServerPlayer:getServer()end
---@return freekill.Room
function FServerPlayer:getRoom()end
---@param room freekill.Room
function FServerPlayer:setRoom(room)end
---@param msg string
function FServerPlayer:speak(msg)end
--- Send a request to client, and allow client to reply within *timeout* seconds.
---
--- *timeout* must not be negative or **nil**.
---@param command string
---@param jsonData string
---@param timeout number
function FServerPlayer:doRequest(command,jsonData,timeout)end
--- Wait for at most *timeout* seconds for reply from client.
---
--- If *timeout* is negative or **nil**, the function will wait forever until get reply.
---@param timeout number # seconds to wait
---@return string reply # JSON data
---@overload fun()
function FServerPlayer:waitForReply(timeout)end
--- Notice the client.
---@param command string
---@param jsonData string
function FServerPlayer:doNotify(command,jsonData)end