[关闭]
@zoand 2015-09-20T14:57:08.000000Z 字数 3250 阅读 1252

HGE扩展-界面角色管理类

HGE


GDE_GUIRoleManager.h

  1. /*
  2. * CopyRight 2009 - 2010 GDE工作室
  3. * 游戏UI系统 - HGE GUI控件 - 角色管理器
  4. * ===================================
  5. * 提供角色的资源管理、角色图片信息管理等功能
  6. *
  7. * 2010/01/07 cg create
  8. */
  9. #ifndef GDE_UI_ROLE_MANAGER_H_
  10. #define GDE_UI_ROLE_MANAGER_H_
  11. #include "GDE_UI_BasicClasses.h"
  12. using namespace GDE;
  13. //角色渲染资料单元
  14. struct RoleGuiUnit
  15. {
  16. RoleGuiUnit( int id , std::string filename , int px, int py ,HGE* pgHGE )
  17. {
  18. role_id = id;
  19. img_filename = filename;
  20. x = px;
  21. y = py;
  22. pHGE = pgHGE;
  23. ////读取图片
  24. tex = pHGE->Texture_Load( filename.c_str() ); //装载纹理
  25. w = pHGE->Texture_GetWidth( tex );
  26. h = pHGE->Texture_GetHeight( tex );
  27. spr = new hgeSprite( tex, 0, 0, w, h );
  28. }
  29. ~RoleGuiUnit()
  30. {
  31. if( tex )
  32. pHGE->Texture_Free( tex );
  33. if( spr )
  34. delete spr;
  35. }
  36. void SetAttackInfo( std::string txt )
  37. {
  38. attackinfo = txt;
  39. attackinfo_show_count = 200; //此处和FPS相关
  40. }
  41. int role_id; //角色ID
  42. std::string img_filename;//角色图片文件名
  43. int x,y; //角色坐标(绝对坐标)
  44. Direction direct; //角色朝向
  45. HTEXTURE tex;
  46. hgeSprite* spr;
  47. int w,h; //角色图片宽高
  48. HGE* pHGE;
  49. std::string attackinfo;//攻击掉血数
  50. int attackinfo_show_count;
  51. };
  52. struct RoleGuiUnitAutoPtr
  53. {
  54. RoleGuiUnitAutoPtr( RoleGuiUnit* r )
  55. {
  56. ptr = r;
  57. }
  58. ~RoleGuiUnitAutoPtr()
  59. {
  60. delete ptr;
  61. }
  62. RoleGuiUnit* GetPtr()
  63. {
  64. return ptr;
  65. }
  66. private:
  67. RoleGuiUnit* ptr;
  68. };
  69. //人物角色管理器GUI
  70. class GDE_GUIRoleManager : public GDE_BASIC_GUIChineseFont
  71. {
  72. public:
  73. GDE_GUIRoleManager( int id , HGE* pgHGE )
  74. : pHGE( pgHGE )
  75. {
  76. this->id = id;
  77. this->rect.Set( 0,0,0,0 ); //该GUI控件只用于显示不用于输入
  78. }
  79. virtual ~GDE_GUIRoleManager()
  80. {
  81. for( int i = 0; i < roles_.size(); i++ )
  82. {
  83. delete roles_[i];
  84. }
  85. roles_.clear();
  86. }
  87. //增加角色
  88. void AddRole( int x, int y, int role_id, std::string filename )
  89. {
  90. RoleGuiUnit* tmp = new RoleGuiUnit( role_id, filename, x, y, pHGE );
  91. //RoleGuiUnitAutoPtr ptr( tmp );
  92. roles_.push_back(tmp);
  93. }
  94. //移除角色
  95. void RemoveRole( int role_id )
  96. {
  97. std::vector<RoleGuiUnit*>::iterator iter;
  98. for(iter = roles_.begin(); iter != roles_.end(); ++iter )
  99. {
  100. if( (*iter)->role_id == role_id )
  101. {
  102. RoleGuiUnit* ptr = *iter;
  103. roles_.erase( iter );
  104. delete ptr;
  105. return;
  106. }
  107. }
  108. }
  109. //设置人物位置
  110. void SetPos( int role_id , int x, int y )
  111. {
  112. std::vector<RoleGuiUnit*>::iterator iter;
  113. for(iter = roles_.begin(); iter != roles_.end(); ++iter )
  114. {
  115. if( (*iter)->role_id == role_id )
  116. {
  117. (*iter)->x = x;
  118. (*iter)->y = y;
  119. return;
  120. }
  121. }
  122. }
  123. //设置人物方向
  124. void SetDirection( int role_id , Direction d )
  125. {
  126. std::vector<RoleGuiUnit*>::iterator iter;
  127. for(iter = roles_.begin(); iter != roles_.end(); ++iter )
  128. {
  129. if( (*iter)->role_id == role_id )
  130. {
  131. (*iter)->direct = d;
  132. return;
  133. }
  134. }
  135. }
  136. //是否提示角色信息
  137. void RoleInfo( bool is_enable )
  138. {
  139. info_enable = is_enable;
  140. }
  141. //处理角色掉血信息
  142. void AttackInfo( int role_id, std::string txt )
  143. {
  144. int x,y;
  145. std::vector<RoleGuiUnit*>::iterator iter;
  146. for(iter = roles_.begin(); iter != roles_.end(); ++iter )
  147. {
  148. if( (*iter)->role_id == role_id )
  149. {
  150. (*iter)->SetAttackInfo( txt );
  151. break;
  152. }
  153. }
  154. }
  155. //渲染所有角色
  156. virtual void Render()
  157. {
  158. std::vector<RoleGuiUnit*>::iterator iter;
  159. for(iter = roles_.begin(); iter != roles_.end(); ++iter )
  160. {
  161. if( (*iter)->spr )
  162. {
  163. (*iter)->spr->RenderStretch( (*iter)->x, (*iter)->y,
  164. (*iter)->x + (*iter)->w,
  165. (*iter)->y + (*iter)->h );
  166. }
  167. if( (*iter)->attackinfo_show_count > 0 )
  168. {
  169. // TO DO 增加掉血值的alpha变化和位置变化,可以做的更绚
  170. int x = (*iter)->x + 10;
  171. int y = (*iter)->y - 20;
  172. font->Print( x,y,(*iter)->attackinfo.c_str() );
  173. (*iter)->attackinfo_show_count--;
  174. }
  175. }
  176. }
  177. //virtual bool MouseLButton(bool bDown);
  178. //virtual void MouseOver( bool bOver );
  179. //virtual bool MouseMove(float x, float y);
  180. private:
  181. HGE* pHGE;
  182. /*
  183. by CG 2010-1-7 这个问题调了我半个小时~总结教训中。。
  184. 此处容器模板成员使用指针的原因:
  185. vector模板成员RoleGuiUnit内涉及到无法复制的内容,如果不使用指针的话,在vector的push_back操作中会
  186. 出现run-time error,所以使用指针容器。
  187. 使用指针容器的时候需要注意,在erase或者clear其成员的时候,需要手动delete成员指针。(因为vector默认
  188. 在erase或者delete的时候调用该类的析构函数,若是指针,则无法释放其指向的内容。
  189. */
  190. std::vector<RoleGuiUnit*> roles_;
  191. bool info_enable;//是否提示角色信息
  192. };
  193. #endif
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注