aboutsummaryrefslogtreecommitdiff
path: root/advtrains_train_subway/sounds/advtrains_subway_dopen.ogg
diff options
context:
space:
mode:
authorh-v-smacker <hans-von-smacker+github@gmail.com>2018-07-17 15:42:52 +0300
committerorwell96 <orwell@bleipb.de>2018-08-12 17:53:03 +0200
commit6d7d9d018161c5e14cfa0992bc3361e5df071c6f (patch)
tree7776d801b868b773ea7479e475b9ebdc9bed19a5 /advtrains_train_subway/sounds/advtrains_subway_dopen.ogg
parentffc3cf9d10b705dd258d5f57fcee768e3eef02bf (diff)
downloadadvtrains-6d7d9d018161c5e14cfa0992bc3361e5df071c6f.tar.gz
advtrains-6d7d9d018161c5e14cfa0992bc3361e5df071c6f.tar.bz2
advtrains-6d7d9d018161c5e14cfa0992bc3361e5df071c6f.zip
onboard computer fix
Diffstat (limited to 'advtrains_train_subway/sounds/advtrains_subway_dopen.ogg')
0 files changed, 0 insertions, 0 deletions
om">it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser 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. */ #pragma once #include "object_properties.h" #include "serveractiveobject.h" class UnitSAO : public ServerActiveObject { public: UnitSAO(ServerEnvironment *env, v3f pos); virtual ~UnitSAO() = default; u16 getHP() const { return m_hp; } // Use a function, if isDead can be defined by other conditions bool isDead() const { return m_hp == 0; } // Rotation void setRotation(v3f rotation) { m_rotation = rotation; } const v3f &getRotation() const { return m_rotation; } v3f getRadRotation() { return m_rotation * core::DEGTORAD; } // Deprecated f32 getRadYawDep() const { return (m_rotation.Y + 90.) * core::DEGTORAD; } // Armor groups inline bool isImmortal() const { return itemgroup_get(getArmorGroups(), "immortal"); } void setArmorGroups(const ItemGroupList &armor_groups); const ItemGroupList &getArmorGroups() const; // Animation void setAnimation(v2f frame_range, float frame_speed, float frame_blend, bool frame_loop); void getAnimation(v2f *frame_range, float *frame_speed, float *frame_blend, bool *frame_loop); void setAnimationSpeed(float frame_speed); // Bone position void setBonePosition(const std::string &bone, v3f position, v3f rotation); void getBonePosition(const std::string &bone, v3f *position, v3f *rotation); // Attachments ServerActiveObject *getParent() const; inline bool isAttached() const { return getParent(); } void setAttachment(int parent_id, const std::string &bone, v3f position, v3f rotation, bool force_visible); void getAttachment(int *parent_id, std::string *bone, v3f *position, v3f *rotation, bool *force_visible) const; void clearChildAttachments(); void clearParentAttachment(); void addAttachmentChild(int child_id); void removeAttachmentChild(int child_id); const std::unordered_set<int> &getAttachmentChildIds() const; // Object properties ObjectProperties *accessObjectProperties(); void notifyObjectPropertiesModified(); void sendOutdatedData(); // Update packets std::string generateUpdateAttachmentCommand() const; std::string generateUpdateAnimationSpeedCommand() const; std::string generateUpdateAnimationCommand() const; std::string generateUpdateArmorGroupsCommand() const; static std::string generateUpdatePositionCommand(const v3f &position, const v3f &velocity, const v3f &acceleration, const v3f &rotation, bool do_interpolate, bool is_movement_end, f32 update_interval); std::string generateSetPropertiesCommand(const ObjectProperties &prop) const; static std::string generateUpdateBonePositionCommand(const std::string &bone, const v3f &position, const v3f &rotation); void sendPunchCommand(); protected: u16 m_hp = 1; v3f m_rotation; ItemGroupList m_armor_groups; // Object properties