Mercurial > fife-parpg
changeset 407:f27880d4c08c
Moved getAngleBetween() form Camera to angles.h and updated it to not use the camera angle in it's calculation.
Added camera rotation to the angle calculation for selecting the correct image by angles.
Added a call to setRotation() to make sure that instance rotation is valid.
author | prock@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Fri, 29 Jan 2010 21:03:51 +0000 |
parents | b50dd16543b2 |
children | 219b8036708c |
files | engine/core/util/math/angles.h engine/core/view/camera.cpp engine/core/view/camera.h |
diffstat | 3 files changed, 45 insertions(+), 37 deletions(-) [+] |
line wrap: on
line diff
--- a/engine/core/util/math/angles.h Fri Jan 29 19:52:14 2010 +0000 +++ b/engine/core/util/math/angles.h Fri Jan 29 21:03:51 2010 +0000 @@ -31,14 +31,31 @@ // These includes are split up in two parts, separated by one empty line // First block: files included from the FIFE root src directory // Second block: files included from the same folder +#include "model/structures/location.h" namespace FIFE { typedef std::map<unsigned int, int> type_angle2id; - + /** Returns id for given angle from angle2id map * in case there are no elements in the map, negative value is returned */ int getIndexByAngle(int angle, const type_angle2id& angle2id, int& closestMatchingAngle); + + /** Gets angle of vector defined by given locations + * @return angle in polar coordinates between the line + * defined by the two locations and the horizontal axis (East <-> West) + */ + inline int getAngleBetween(const Location& loc1, const Location& loc2) { + ExactModelCoordinate c1 = loc1.getMapCoordinates(); + ExactModelCoordinate c2 = loc2.getMapCoordinates(); + + double dy = (c2.y - c1.y); + double dx = (c2.x - c1.x); + + int angle = static_cast<int>(atan2(-dy,dx)*(180.0/M_PI)); + + return angle; + } } #endif
--- a/engine/core/view/camera.cpp Fri Jan 29 19:52:14 2010 +0000 +++ b/engine/core/view/camera.cpp Fri Jan 29 21:03:51 2010 +0000 @@ -39,6 +39,7 @@ #include "model/structures/location.h" #include "util/log/logger.h" #include "util/math/fife_math.h" +#include "util/math/angles.h" #include "util/time/timemanager.h" #include "video/renderbackend.h" #include "video/image.h" @@ -526,13 +527,21 @@ angle = vc.facing_angle; } - angle += instance->getRotation(); + //generate angle based on camera rotation and instance rotation + angle = angle + m_rotation + instance->getRotation(); Image* image = NULL; Action* action = instance->getCurrentAction(); if (action) { FL_DBG(_log, "Instance has action"); - int animation_id = action->getVisual<ActionVisual>()->getAnimationIndexByAngle(angle); + int animation_id = action->getVisual<ActionVisual>()->getAnimationIndexByAngle(vc.facing_angle + m_rotation); + + int facing_angle; + if (vc.facing_angle < 0){ + facing_angle = 360+vc.facing_angle; //make it a positive angle + } + instance->setRotation(facing_angle); //update so the animation has correct rotation + Animation& animation = m_apool->getAnimation(animation_id); unsigned int animtime = instance->getActionRuntime() % animation.getDuration(); image = animation.getFrameByTimestamp(animtime);
--- a/engine/core/view/camera.h Fri Jan 29 19:52:14 2010 +0000 +++ b/engine/core/view/camera.h Fri Jan 29 21:03:51 2010 +0000 @@ -67,10 +67,10 @@ * @param ipool to use with rendering * @param apool to use with rendering */ - Camera(const std::string& id, + Camera(const std::string& id, Layer* layer, Rect viewport, - ExactModelCoordinate emc, + ExactModelCoordinate emc, RenderBackend* renderbackend, ImagePool* ipool, AnimationPool* apool); @@ -126,7 +126,7 @@ * @return Point Point containing x=width and y=height */ void setCellImageDimensions(unsigned int width, unsigned int height); - + /** Gets screen cell image dimensions. * @see setCellImageDimensions * @return Point containing x=width and y=height @@ -137,7 +137,7 @@ * @return Point Point containing x=width and y=height */ Point getCellImageDimensions(Layer* layer); - + /** Sets the location for camera * @param location location (center point) to render */ @@ -168,7 +168,7 @@ /** Returns instance where camera is attached. NULL if not attached */ Instance* getAttached() const { return m_attachedto; } - + /** Sets the viewport for camera * viewport is rectangle inside the view where camera renders * @param viewport area for camera render @@ -199,32 +199,14 @@ /** Gets if camera is enabled / disabled */ bool isEnabled(); - - /** Gets angle of vector defined by given locations and camera properties (e.g. rotation) - * @return angle in polar coordinates - */ - inline int getAngleBetween(const Location& loc1, const Location& loc2) { - static const double VECTOR_MULTIP = 100000.0; - ExactModelCoordinate c1 = loc1.getMapCoordinates(); - ExactModelCoordinate c2 = loc2.getMapCoordinates(); - ExactModelCoordinate cd((c2.x - c1.x) * VECTOR_MULTIP, (c2.y - c1.y) * VECTOR_MULTIP, 0); - c2.x = c1.x + cd.x; - c2.y = c1.y + cd.y; - ScreenPoint pt1 = this->toScreenCoordinates(c1); - ScreenPoint pt2 = this->toScreenCoordinates(c2); - double dy = (pt2.y - pt1.y); - double dx = (pt2.x - pt1.x); - int angle = static_cast<int>(atan2(-dy,dx)*(180.0/M_PI)); - return angle; - } - + /** Returns instances that match given screen coordinate * @param screen_coords screen coordinates to be used for hit search * @param layer layer to use for search * @param instances list of instances that is filled based on hit test results */ void getMatchingInstances(ScreenPoint screen_coords, Layer& layer, std::list<Instance*>& instances); - + /** Returns instances that match given screen coordinate * @param screen_point1 top left screen coordinates to be used for hit search * @param screen_point2 right bottom screen coordinates to be used for hit search @@ -240,7 +222,7 @@ * @param use_exactcoordinates if true, comparison is done using exact coordinates. if not, cell coordinates are used */ void getMatchingInstances(Location& loc, std::list<Instance*>& instances, bool use_exactcoordinates=false); - + /** General update routine. * In this function, the camera's position gets updated when its attached * to another instance. @@ -272,18 +254,18 @@ /** resets active layer information on all renderers. */ void resetRenderers(); - + /** calculates z-value for given screenpoint */ void calculateZValue(ScreenPoint& screen_coords); void onRendererPipelinePositionChanged(RendererBase* renderer); void onRendererEnabledChanged(RendererBase* renderer); - + /** Renders camera */ void render(); - + private: std::string m_id; @@ -294,7 +276,7 @@ * - setTilt */ void updateMatrices(); - + /** Updates camera reference scale * Reference scale is in a sense an internal zooming factor, * which adjusts cell dimensions in logical space to ones shown on @@ -306,7 +288,7 @@ /** Gets logical cell image dimensions for given layer */ DoublePoint getLogicalCellDimensions(Layer* layer); - + DoubleMatrix m_matrix; DoubleMatrix m_inverse_matrix; double m_tilt; @@ -325,16 +307,16 @@ // caches calculated image dimensions for already queried & calculated layers std::map<Layer*, Point> m_image_dimensions; bool m_iswarped; - + // list of renderers managed by the view std::map<std::string, RendererBase*> m_renderers; std::list<RendererBase*> m_pipeline; bool m_updated; // false, if view has never been updated before - + RenderBackend* m_renderbackend; ImagePool* m_ipool; AnimationPool* m_apool; - + // caches layer -> instances structure between renders e.g. to fast query of mouse picking order t_layer_to_instances m_layer_to_instances; };