summaryrefslogtreecommitdiffhomepage
path: root/Magic2/Selector.h
blob: 2e07e5a6ba19fd5920e4a395eeea8170261823d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*  Starshatter: The Open Source Project
    Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
    Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
    Copyright (c) 1997-2006, Destroyer Studios LLC.

    AUTHOR:       John DiCamillo


    OVERVIEW
    ========
    Class definition for Selector (free-form selection tool)
*/

#ifndef Selector_h
#define Selector_h

#include "Polygon.h"
#include "Graphic.h"
#include "Video.h"

class  ModelView;
class  Model;
class  Selection;
class  Surface;

// +----------------------------------------------------------------------+

class Selector : public Graphic
{
public:
   Selector(Selection* s=0);
   virtual ~Selector();

   enum SELECT_MODE { SELECT_REMOVE=-1, SELECT_REPLACE=0, SELECT_APPEND=1 };

   // Operations
   virtual void   Render(Video* video, DWORD flags);
   virtual bool   CheckVisibility(Projector& projector) { return true; }

   void           Clear();
   void           Begin(Model* m, int mode, int select_mode = SELECT_REPLACE);
   void           AddMark(CPoint& p);
   void           End();

   bool           IsActive()     const { return view_mode ? true : false; }
   int            GetViewMode()  const { return view_mode; }
   Selection*     GetSelection() const { return selection; }

   void           UseModel(Model* m);
   void           SelectAll(int select_mode = SELECT_REPLACE);
   void           SelectInverse();
   void           SelectSurface(Surface* s, int select_mode = SELECT_REPLACE);
   void           SelectVert(Surface* s, int   v, int select_mode = SELECT_REPLACE);
   void           SelectPoly(Poly* p, int select_mode = SELECT_REPLACE);
   void           SelectMaterial(Material* m, int select_mode = SELECT_REPLACE);

   void           Reselect();

protected:
   enum { MAX_MARK = 4096 };

   int            view_mode;
   int            nmarks;
   CPoint         marks[MAX_MARK];
   int            select_mode;

   bool           own_selection;
   Selection*     selection;
   Model*         model;
};


// +----------------------------------------------------------------------+

#endif Selector_h