From ba4d93027f7b1590f303eff2138cae413faf5c34 Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Fri, 26 Oct 2012 11:46:46 +0300 Subject: Joint positioning and rotation code, and fix a problem related to their lua API Attempt to move the animation system to a more correct implementation, rather than using object properties. Incomplete and breaks functionality --- src/genericobject.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/genericobject.cpp') diff --git a/src/genericobject.cpp b/src/genericobject.cpp index 4ab031b5d..0914a13c5 100644 --- a/src/genericobject.cpp +++ b/src/genericobject.cpp @@ -92,6 +92,19 @@ std::string gob_cmd_set_sprite( return os.str(); } +std::string gob_cmd_set_animations(int frame_start, int frame_end, float frame_speed, float frame_blend) +{ + std::ostringstream os(std::ios::binary); + // command + writeU8(os, GENERIC_CMD_SET_ANIMATIONS); + // parameters + writeU16(os, frame_start); + writeU16(os, frame_end); + writeF1000(os, frame_speed); + writeF1000(os, frame_blend); + return os.str(); +} + std::string gob_cmd_punched(s16 damage, s16 result_hp) { std::ostringstream os(std::ios::binary); -- cgit v1.2.3