tag.cc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:8k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1997 by the University of Southern California
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License,
  6.  * version 2, as published by the Free Software Foundation.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License along
  14.  * with this program; if not, write to the Free Software Foundation, Inc.,
  15.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  16.  *
  17.  *
  18.  * The copyright of this module includes the following
  19.  * linking-with-specific-other-licenses addition:
  20.  *
  21.  * In addition, as a special exception, the copyright holders of
  22.  * this module give you permission to combine (via static or
  23.  * dynamic linking) this module with free software programs or
  24.  * libraries that are released under the GNU LGPL and with code
  25.  * included in the standard release of ns-2 under the Apache 2.0
  26.  * license or under otherwise-compatible licenses with advertising
  27.  * requirements (or modified versions of such code, with unchanged
  28.  * license).  You may copy and distribute such a system following the
  29.  * terms of the GNU GPL for this module and the licenses of the
  30.  * other code concerned, provided that you include the source code of
  31.  * that other code when and as the GNU GPL requires distribution of
  32.  * source code.
  33.  *
  34.  * Note that people who make modified versions of this module
  35.  * are not obligated to grant this special exception for their
  36.  * modified versions; it is their choice whether to do so.  The GNU
  37.  * General Public License gives permission to release a modified
  38.  * version without this exception; this exception also makes it
  39.  * possible to release a modified version which carries forward this
  40.  * exception.
  41.  *
  42.  * $Header: /cvsroot/nsnam/nam-1/tag.cc,v 1.7 2007/02/12 07:08:43 tom_henderson Exp $
  43.  */
  44. #ifdef WIN32
  45. #include <windows.h>
  46. #endif
  47. #include <string.h>
  48. #include <tcl.h>
  49. #include "animation.h"
  50. #include "tag.h"
  51. #include "view.h"
  52. #include "node.h"
  53. #include "editview.h"
  54. Tag::Tag()
  55. : Animation(0, 0), nMbr_(0), name_(NULL)
  56. {
  57. mbrHash_ = new Tcl_HashTable;
  58. Tcl_InitHashTable(mbrHash_, TCL_ONE_WORD_KEYS);
  59. }
  60. Tag::Tag(const char *name)
  61. : Animation(0, 0), nMbr_(0)
  62. {
  63. size_t len = strlen(name);
  64. if (len == 0) 
  65. name_ = NULL;
  66. else {
  67. name_ = new char[len+1];
  68. strcpy(name_, name);
  69. }
  70. mbrHash_ = new Tcl_HashTable;
  71. Tcl_InitHashTable(mbrHash_, TCL_ONE_WORD_KEYS);
  72. }
  73. Tag::~Tag()
  74. {
  75. remove();
  76. Tcl_DeleteHashTable(mbrHash_);
  77. delete mbrHash_;
  78. if (name_ != NULL)
  79. delete []name_;
  80. }
  81. void Tag::setname(const char *name)
  82. {
  83. if (name_ != NULL)
  84. delete name_;
  85. size_t len = strlen(name);
  86. if (len == 0) 
  87. name_ = NULL;
  88. else {
  89. name_ = new char[len+1];
  90. strcpy(name_, name);
  91. }
  92. }
  93. void Tag::add(Animation *a)
  94. {
  95. int newEntry = 1;
  96. Tcl_HashEntry *he = 
  97. Tcl_CreateHashEntry(mbrHash_,(const char *)a->id(), &newEntry);
  98. if (newEntry && (he != NULL)) {
  99. // Do not handle exception he == NULL. Don't know how.
  100. Tcl_SetHashValue(he, (ClientData)a);
  101. nMbr_++;
  102. a->merge(bb_);
  103. // Let that object know about this group
  104. a->addTag(this); 
  105. }
  106. }
  107. void Tag::remove()
  108. {
  109. // Remove this tag from all its members
  110. Animation *p;
  111. Tcl_HashEntry *he;
  112. Tcl_HashSearch hs;
  113. int i = 0;
  114. for (he = Tcl_FirstHashEntry(mbrHash_, &hs);
  115.      he != NULL;
  116.      he = Tcl_NextHashEntry(&hs), i++) {
  117. p = (Animation *) Tcl_GetHashValue(he);
  118. p->deleteTag(this);
  119. Tcl_DeleteHashEntry(he);
  120. nMbr_--;
  121. }
  122. bb_.clear();
  123. }
  124. void Tag::remove(Animation *a)
  125. {
  126. Tcl_HashEntry *he = Tcl_FindHashEntry(mbrHash_, (const char *)a->id());
  127. if (he != NULL) {
  128. a->deleteTag(this);
  129. Tcl_DeleteHashEntry(he);
  130. nMbr_--;
  131. update_bb();
  132. }
  133. }
  134. void Tag::draw(View *v, double now) {
  135. // XXX don't draw anything except it's selected. Or draw 
  136. // 4 black dots in the 4 corners.
  137. v->rect(bb_.xmin, bb_.ymin, bb_.xmax, bb_.ymax, 
  138. Paint::instance()->thin());
  139. }
  140. // Used for xor-draw only
  141. void Tag::xdraw(View *v, double now) const 
  142. {
  143. // Draw every object of this group
  144. Tcl_HashEntry *he;
  145. Tcl_HashSearch hs;
  146. Animation *a;
  147. for (he = Tcl_FirstHashEntry(mbrHash_, &hs);
  148.      he != NULL;
  149.      he = Tcl_NextHashEntry(&hs)) {
  150. a = (Animation *) Tcl_GetHashValue(he);
  151. a->draw(v, now);
  152. }
  153. }
  154. void Tag::update_bb(void)
  155. {
  156. Tcl_HashEntry *he;
  157. Tcl_HashSearch hs;
  158. Animation *a;
  159. bb_.clear();
  160. for (he = Tcl_FirstHashEntry(mbrHash_, &hs);
  161.      he != NULL;
  162.      he = Tcl_NextHashEntry(&hs)) {
  163. a = (Animation *) Tcl_GetHashValue(he);
  164. a->merge(bb_);
  165. }
  166. }
  167. void Tag::reset(double /*now*/)
  168. {
  169. }
  170. //----------------------------------------------------------------------
  171. // void 
  172. // Tag::move(EditView *v, float wdx, float wdy)
  173. //   -- Move all tagged object and update the bounding box
  174. //----------------------------------------------------------------------
  175. void
  176. Tag::move(EditView *v, float wdx, float wdy) {
  177. Tcl_HashEntry *he;
  178. Tcl_HashSearch hs;
  179. Animation *a;
  180. bb_.clear();
  181. for (he = Tcl_FirstHashEntry(mbrHash_, &hs);
  182.      he != NULL;
  183.      he = Tcl_NextHashEntry(&hs)) {
  184. a = (Animation *) Tcl_GetHashValue(he);
  185. a->move(v, wdx, wdy);
  186. a->merge(bb_);
  187. }
  188. }
  189. const char *Tag::info() const
  190. {
  191. static char str[256];
  192. strcpy(str, "Tag");
  193. return str;
  194. }
  195. //----------------------------------------------------------------------
  196. // void
  197. // Tag::addNodeMovementElements(EditView * editview, 
  198. //                              double x, double y, double current_time)
  199. //   - Used by the nam editor
  200. //   - If any nodes in the tagged selection are mobile then the
  201. //----------------------------------------------------------------------
  202. void
  203. Tag::addNodeMovementDestination(EditView * editview, 
  204.                                 double dx, double dy, double current_time) {
  205. Tcl_HashEntry * hash_entry;
  206. Tcl_HashSearch hash_search;
  207. Animation * animation_object;
  208. Node * node;
  209. float x,y;
  210. for (hash_entry = Tcl_FirstHashEntry(mbrHash_, &hash_search);
  211.      hash_entry != NULL;
  212.      hash_entry = Tcl_NextHashEntry(&hash_search)) {
  213. animation_object = (Animation *) Tcl_GetHashValue(hash_entry);
  214. if (animation_object->classid() == ClassNodeID) {
  215. node = (Node *) animation_object;
  216. x = node->x();
  217. y = node->y();
  218. editview->map(x,y);
  219. x += dx;
  220. y += dy;
  221. editview->imap(x,y);
  222. node->addMovementDestination(x, y, current_time);
  223. }
  224. }
  225. }
  226. //----------------------------------------------------------------------
  227. // int
  228. // Tag::getNodeMovementTimes(char * buffer, int buffer_size)
  229. //   - returns a string of the form
  230. //     {{<node id> <time> <time_2>...} {node_id2 <time> <time2>...}...}
  231. //----------------------------------------------------------------------
  232. int
  233. Tag::getNodeMovementTimes(char * buffer, int buffer_size) {
  234. Tcl_HashEntry * hash_entry;
  235. Tcl_HashSearch hash_search;
  236. Animation * animation_object;
  237. Node * node;
  238. int chars_written, just_written;
  239. chars_written = 0;
  240. for (hash_entry = Tcl_FirstHashEntry(mbrHash_, &hash_search);
  241.      hash_entry != NULL;
  242.      hash_entry = Tcl_NextHashEntry(&hash_search)) {
  243. animation_object = (Animation *) Tcl_GetHashValue(hash_entry);
  244. if (animation_object->classid() == ClassNodeID) {
  245. node = (Node *) animation_object;
  246. if (chars_written  < buffer_size) {
  247. just_written = sprintf(buffer + chars_written, "{%d ", node->number());
  248. if (just_written != -1) {
  249. chars_written += just_written;
  250. chars_written += node->getMovementTimeList(buffer + chars_written,
  251.                                            buffer_size - chars_written) -1;
  252. chars_written += sprintf(buffer + chars_written, "}");
  253. } else {
  254. chars_written = -1;
  255. break;
  256. }
  257. }
  258. }
  259. chars_written += sprintf(buffer + chars_written, " ");
  260. }
  261. return chars_written;
  262. }