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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1997 University of Southern California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *      This product includes software developed by the Information Sciences
  16.  *      Institute of the University of Southern California.
  17.  * 4. Neither the name of the University nor of the Institute may be used
  18.  *    to endorse or promote products derived from this software without
  19.  *    specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  *
  33.  *
  34.  * @(#) $Header: /cvsroot/nsnam/nam-1/feature.h,v 1.4 2001/04/18 00:14:15 mehringe Exp $ (LBL)
  35.  */
  36. #ifndef nam_feature_h
  37. #define nam_feature_h
  38. class Queue;
  39. class Edge;
  40. class Agent;
  41. class Node;
  42. class View;
  43. #include "animation.h"
  44. #define TIMER_STOPPED 0
  45. #define TIMER_UP 1
  46. #define TIMER_DOWN 2
  47. class Feature : public Animation {
  48.     public:
  49. inline const char* name() const { return (varname_); }
  50. inline int num() const { return (nn_); }
  51. inline double size() const { return (size_); }
  52. virtual void size(double s);
  53. virtual void reset(double);
  54. inline double x() const { return (x_); }
  55. inline double y() const { return (y_); }
  56. virtual void place(double x, double y);
  57. void varname(const char* name, int anchor);
  58. inline int anchor() const { return (anchor_); }
  59. inline void anchor(int v) { anchor_ = v; }
  60. inline Feature *next() const { return next_; }
  61. inline void next(Feature * f) { next_ = f; }
  62. virtual void set_feature(char *) {};
  63. virtual void set_feature(double, int, double) {};
  64. int inside(double, float, float) const;
  65. const char* info() const;
  66. virtual void monitor(double now, char *result, int len);
  67. inline int marked() const { return (mark_); }
  68. inline void mark(int v) { mark_ = v; }
  69. Feature* next_;
  70.     protected:
  71. Feature(Agent *a, const char* name);
  72. void update_bb();
  73. void drawlabel(View*) const;
  74. double size_;
  75. double x_, y_;
  76. char *varname_;
  77. Agent* agent_;
  78. int nn_;
  79. int anchor_;
  80. int mark_;
  81. };
  82. class ListFeature : public Feature {
  83.  public:
  84. ListFeature(Agent *a, const char* name);
  85. void set_feature(char *);
  86. virtual void size(double s);
  87. virtual void draw(View*, double now);
  88. void monitor(double now, char *result, int len);
  89. virtual void place(double x, double y);
  90.  private:
  91. char *value_;
  92.         float x0_, y0_;
  93.         float x1_, y1_;
  94. };
  95. class VariableFeature : public Feature {
  96.  public:
  97. VariableFeature(Agent *a, const char* name);
  98. void set_feature(char *);
  99. virtual void size(double s);
  100. virtual void draw(View*, double now);
  101. void monitor(double now, char *result, int len);
  102. virtual void place(double x, double y);
  103.  private:
  104. char *value_;
  105.         float x0_, y0_;
  106.         float x1_, y1_;
  107. };
  108. class TimerFeature : public Feature {
  109.  public:
  110. TimerFeature(Agent *a, const char* name);
  111. void set_feature(double timer, int direction, double time_set);
  112. virtual void size(double s);
  113. virtual void draw(View*, double now);
  114. void monitor(double now, char *result, int len);
  115. virtual void place(double x, double y);
  116.  private:
  117. double timer_;
  118. double time_set_;
  119. int direction_;
  120.         float x0_, y0_;
  121.         float x1_, y1_;
  122. };
  123. #endif