note description: "[ d_ticcmd.h System specific interface stuff. The data sampled per tick (single player) and transmitted to other players (multiplayer). Mainly movements/button commands per game tick, plus a checksum for internal state consistency. ]" license: "[ Copyright (C) 1993-1996 by id Software, Inc. Copyright (C) 2005-2014 Simon Howard Copyright (C) 2021 Ilgiz Mustafin This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ]" class TICCMD_T create default_create feature forwardmove: INTEGER_8 assign set_forwardmove -- *2048 for move set_forwardmove (a_forwardmove: like forwardmove) do forwardmove := a_forwardmove end sidemove: INTEGER_8 assign set_sidemove -- *2048 for move set_sidemove (a_sidemove: like sidemove) do sidemove := a_sidemove end angleturn: INTEGER_32 assign set_angleturn -- <<16 for angle data set_angleturn (a_angleturn: like angleturn) do angleturn := a_angleturn end consistancy: INTEGER_32 assign set_consistancy -- checks for net game set_consistancy (a_consistancy: like consistancy) do consistancy := a_consistancy end chatchar: CHARACTER_8 assign set_chatchar set_chatchar (a_chatchar: like chatchar) do chatchar := a_chatchar end buttons: INTEGER_32 assign set_buttons set_buttons (a_buttons: like buttons) do buttons := a_buttons end feature copy_from (a_other: TICCMD_T) do forwardmove := a_other.forwardmove sidemove := a_other.sidemove angleturn := a_other.angleturn consistancy := a_other.consistancy chatchar := a_other.chatchar buttons := a_other.buttons ensure copied: Current ~ a_other not_modified_a_other: old a_other ~ a_other end end -- class TICCMD_T
Generated by ISE EiffelStudio