File: Wm5RectangleSurface.cpp

package info (click to toggle)
libwildmagic 5.17%2Bcleaned1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 90,124 kB
  • sloc: cpp: 215,940; csh: 637; sh: 91; makefile: 40
file content (221 lines) | stat: -rw-r--r-- 7,530 bytes parent folder | download | duplicates (3)
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
// Geometric Tools, LLC
// Copyright (c) 1998-2014
// Distributed under the Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
// http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt
//
// File Version: 5.0.0 (2010/01/01)

#include "Wm5GraphicsPCH.h"
#include "Wm5RectangleSurface.h"
#include "Wm5Renderer.h"
#include "Wm5VertexBufferAccessor.h"
using namespace Wm5;

WM5_IMPLEMENT_RTTI(Wm5, TriMesh, RectangleSurface);
WM5_IMPLEMENT_STREAM(RectangleSurface);
WM5_IMPLEMENT_FACTORY(RectangleSurface);
WM5_IMPLEMENT_DEFAULT_NAMES(TriMesh, RectangleSurface);

//----------------------------------------------------------------------------
RectangleSurface::RectangleSurface (ParametricSurfacef* surface,
    int numUSamples, int numVSamples, VertexFormat* vformat,
    const Float2* tcoordMin, const Float2* tcoordMax)
    :
    mSurface(surface),
    mNumUSamples(numUSamples),
    mNumVSamples(numVSamples)
{
    assertion(surface && surface->IsRectangular(), "Invalid surface\n");

    mVFormat = vformat;

    float uMin = mSurface->GetUMin();
    float uRange = mSurface->GetUMax() - uMin;
    float uDelta = uRange/(float)(mNumUSamples - 1);
    float vMin = mSurface->GetVMin();
    float vRange = mSurface->GetVMax() - vMin;
    float vDelta = vRange/(float)(mNumVSamples - 1);

    // Compute the vertices, normals, and texture coordinates.
    int numVertices = mNumUSamples*mNumVSamples;
    int vstride = vformat->GetStride();
    mVBuffer = new0 VertexBuffer(numVertices, vstride);
    VertexBufferAccessor vba(vformat, mVBuffer);

    float tuDelta = 0.0f, tvDelta = 0.0f;
    if (tcoordMin && tcoordMax)
    {
        tuDelta = ((*tcoordMax)[0] - (*tcoordMin)[0])/uRange;
        tvDelta = ((*tcoordMax)[1] - (*tcoordMin)[1])/vRange;
    }

    int uIndex, vIndex, i;
    for (uIndex = 0, i = 0; uIndex < mNumUSamples; ++uIndex)
    {
        float uIncr = uDelta*uIndex;
        float u = uMin + uIncr;
        for (vIndex = 0; vIndex < mNumVSamples; ++vIndex, ++i)
        {
            float vIncr = vDelta*vIndex;
            float v = vMin + vIncr;
            vba.Position<Vector3f>(i) = mSurface->P(u, v);

            if (vba.HasNormal())
            {
                Vector3f pos, tan0, tan1, normal;
                mSurface->GetFrame(u, v, pos, tan0, tan1, normal);
                vba.Normal<Vector3f>(i) = normal;
            }

            const int numTCoords = VertexFormat::AM_MAX_TCOORD_UNITS;
            Float2 tcoord(
                (*tcoordMin)[0] + tuDelta*uIncr,
                (*tcoordMin)[1] + tvDelta*vIncr);
            for (int unit = 0; unit < numTCoords; ++unit)
            {
                if (vba.HasTCoord(unit))
                {
                    assertion(vba.GetTCoordChannels(unit) == 2,
                        "Texture coordinate must be 2D\n");
                    vba.TCoord<Float2>(unit, i) = tcoord;
                }
            }
        }
    }

    // Compute the surface triangle indices.
    int numTriangles = 2*(mNumUSamples-1)*(mNumVSamples-1);
    int numIndices = 3*numTriangles;
    mIBuffer = new0 IndexBuffer(numIndices, sizeof(int));
    int* indices = (int*)mIBuffer->GetData();
    for (uIndex = 0, i = 0; uIndex < mNumUSamples - 1; ++uIndex)
    {
        int i0 = i;
        int i1 = i0 + 1;
        i += mNumVSamples;
        int i2 = i;
        int i3 = i2 + 1;
        for (vIndex = 0; vIndex < mNumVSamples - 1; ++vIndex, indices += 6)
        {
            indices[0] = i0;
            indices[1] = i1;
            indices[2] = i2;
            indices[3] = i1;
            indices[4] = i3;
            indices[5] = i2;
            i0++;
            i1++;
            i2++;
            i3++;
        }
    }

    UpdateModelSpace(Visual::GU_NORMALS);
}
//----------------------------------------------------------------------------
RectangleSurface::~RectangleSurface ()
{
    delete0(mSurface);
}
//----------------------------------------------------------------------------
void RectangleSurface::UpdateSurface ()
{
    float uMin = mSurface->GetUMin();
    float uDelta = (mSurface->GetUMax() - uMin)/(float)(mNumUSamples - 1);
    float vMin = mSurface->GetVMin();
    float vDelta = (mSurface->GetVMax() - vMin)/(float)(mNumVSamples - 1);

    VertexBufferAccessor vba(mVFormat, mVBuffer);
    for (int uIndex = 0, i = 0; uIndex < mNumUSamples; ++uIndex)
    {
        float u = uMin + uDelta*uIndex;
        for (int vIndex = 0; vIndex < mNumVSamples; ++vIndex, ++i)
        {
            float v = vMin + vDelta*vIndex;
            vba.Position<Vector3f>(i) = mSurface->P(u, v);

            if (vba.HasNormal())
            {
                Vector3f pos, tan0, tan1, normal;
                mSurface->GetFrame(u, v, pos, tan0, tan1, normal);
                vba.Normal<Vector3f>(i) = normal;
            }
        }
    }

    UpdateModelSpace(Visual::GU_NORMALS);
    Renderer::UpdateAll(mVBuffer);
}
//----------------------------------------------------------------------------

//----------------------------------------------------------------------------
// Streaming support.
//----------------------------------------------------------------------------
RectangleSurface::RectangleSurface (LoadConstructor value)
    :
    TriMesh(value),
    mSurface(0),
    mNumUSamples(0),
    mNumVSamples(0)
{
}
//----------------------------------------------------------------------------
void RectangleSurface::Load (InStream& source)
{
    WM5_BEGIN_DEBUG_STREAM_LOAD(source);

    TriMesh::Load(source);

    source.Read(mNumUSamples);
    source.Read(mNumVSamples);

    // TODO.  See note in RectangleSurface::Save.
    mSurface = 0;

    WM5_END_DEBUG_STREAM_LOAD(RectangleSurface, source);
}
//----------------------------------------------------------------------------
void RectangleSurface::Link (InStream& source)
{
    TriMesh::Link(source);
}
//----------------------------------------------------------------------------
void RectangleSurface::PostLink ()
{
    TriMesh::PostLink();
}
//----------------------------------------------------------------------------
bool RectangleSurface::Register (OutStream& target) const
{
    return TriMesh::Register(target);
}
//----------------------------------------------------------------------------
void RectangleSurface::Save (OutStream& target) const
{
    WM5_BEGIN_DEBUG_STREAM_SAVE(target);

    TriMesh::Save(target);

    target.Write(mNumUSamples);
    target.Write(mNumVSamples);

    // TODO.  The class ParametricSurface3 is abstract and does not know
    // about the data representation for the derived-class object that is
    // passed to the RectangleSurface constructor.  Because of this, any
    // loaded RectangleSurface object will require the application to
    // manually set the surface via the SetSurface() member function.
    //
    // Streaming support should be added to the surface classes.

    WM5_END_DEBUG_STREAM_SAVE(RectangleSurface, target);
}
//----------------------------------------------------------------------------
int RectangleSurface::GetStreamingSize () const
{
    int size = TriMesh::GetStreamingSize();
    size += sizeof(mNumUSamples);
    size += sizeof(mNumVSamples);
    return size;
}
//----------------------------------------------------------------------------