summaryrefslogtreecommitdiffhomepage
path: root/Stars45/Polygon.h
blob: 5efded742acfb396b8718bfd7c0283512fb7a3cb (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*  Starshatter OpenSource Distribution
    Copyright (c) 1997-2004, Destroyer Studios LLC.
    All Rights Reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
    * Neither the name "Destroyer Studios" nor the names of its contributors
      may be used to endorse or promote products derived from this software
      without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.

    SUBSYSTEM:    nGenEx.lib
    FILE:         Polygon.h
    AUTHOR:       John DiCamillo


    OVERVIEW
    ========
    Polygon structures: VertexSet, Poly, Material
*/

#ifndef Polygon_h
#define Polygon_h

#include "Geometry.h"
#include "Color.h"

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

class  Bitmap;
struct Poly;
struct Material;
struct VertexSet;

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

struct Poly
{
    static const char* TYPENAME() { return "Poly"; }

    enum { MAX_VERTS = 4 };

    Poly()  { }
    Poly(int init);
    ~Poly() { }

    int operator <  (const Poly& p) const { return sortval < p.sortval;  }
    int operator == (const Poly& p) const { return this == &p;           }

    int Contains(const Vec3& pt) const;

    BYTE           nverts;
    BYTE           visible;
    WORD           verts[MAX_VERTS];
    WORD           vlocs[MAX_VERTS];
    VertexSet*     vertex_set;
    Material*      material;
    int            sortval;
    float          flatness;
    Plane          plane;
};

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

struct Material
{
    static const char* TYPENAME() { return "Material"; }

    enum BLEND_TYPE { MTL_SOLID=1, MTL_TRANSLUCENT=2, MTL_ADDITIVE=4 };
    enum            { NAMELEN=32 };

    Material();
    ~Material();

    int operator == (const Material& m) const;

    void Clear();

    char        name[NAMELEN];
    char        shader[NAMELEN];

    ColorValue  Ka;         // ambient color
    ColorValue  Kd;         // diffuse color
    ColorValue  Ks;         // specular color
    ColorValue  Ke;         // emissive color
    float       power;      // highlight sharpness (big=shiny)
    float       brilliance; // diffuse power function
    float       bump;       // bump level (0=none)
    DWORD       blend;      // alpha blend type
    bool        shadow;     // casts shadow
    bool        luminous;   // verts have their own lighting

    Bitmap*     tex_diffuse;
    Bitmap*     tex_specular;
    Bitmap*     tex_bumpmap;
    Bitmap*     tex_emissive;
    Bitmap*     tex_alternate;
    Bitmap*     tex_detail;

    bool        IsSolid()         const { return blend == MTL_SOLID;       }
    bool        IsTranslucent()   const { return blend == MTL_TRANSLUCENT; }
    bool        IsGlowing()       const { return blend == MTL_ADDITIVE;    }
    const char* GetShader(int n)  const;

    //
    // Support for Magic GUI
    //

    Color       ambient_color;
    Color       diffuse_color;
    Color       specular_color;
    Color       emissive_color;

    float       ambient_value;
    float       diffuse_value;
    float       specular_value;
    float       emissive_value;

    Bitmap*     thumbnail;        // preview image

    void        CreateThumbnail(int size=128);
    DWORD       GetThumbColor(int i, int j, int size);
};

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

struct VertexSet
{
    static const char* TYPENAME() { return "VertexSet"; }

    enum VertexSpaces { OBJECT_SPACE, WORLD_SPACE, VIEW_SPACE, SCREEN_SPACE };

    VertexSet(int m);
    ~VertexSet();

    void     Resize(int m, bool preserve=false);
    void     Delete();
    void     Clear();
    void     CreateTangents();
    void     CreateAdditionalTexCoords();
    bool     CopyVertex(int dst, int src);
    void     CalcExtents(Point& plus, Point& minus);

    VertexSet*  Clone() const;

    int      nverts;
    int      space;

    Vec3*    loc;
    Vec3*    nrm;
    Vec3*    s_loc;
    float*   rw;
    float*   tu;
    float*   tv;
    float*   tu1;
    float*   tv1;
    DWORD*   diffuse;
    DWORD*   specular;
    Vec3*    tangent;
    Vec3*    binormal;
};

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

#endif  // Polygon_h