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
|
// 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 "VolumeRenderer.h"
WM5_WINDOW_APPLICATION(VolumeRenderer);
#define TEST_VR
//----------------------------------------------------------------------------
VolumeRenderer::VolumeRenderer ()
:
WindowApplication2("SampleImagics/VolumeRenderer", 0, 0, 0, 0,
Float4(1.0f, 1.0f, 1.0f, 1.0f))
{
mButtonDown = false;
mBound = 0;
mGamma = 0.25f;
}
//----------------------------------------------------------------------------
bool VolumeRenderer::OnPrecreate ()
{
if (!WindowApplication2::OnPrecreate())
{
return false;
}
#ifdef TEST_VR
std::string imageName = Environment::GetPathR("Molecule.im");
size_t length = strlen(imageName.c_str());
char* filename = new1<char>(length + 1);
strcpy(filename, imageName.c_str());
#else
char* filename = 0;
TheCommand->GetFilename(filename);
if (!filename)
{
// Input filename must be specified on the command line.
return false;
}
#endif
// Load image, must be 3D and pixels must be unsigned char.
int numDimensions, numPixels, rtti, sizeOf;
int* bounds = 0;
char* data = 0;
bool loaded = Lattice::LoadRaw(filename, numDimensions, bounds,
numPixels, rtti, sizeOf, data);
if (!loaded || numDimensions != 3 || rtti != Euchar::GetRTTI())
{
delete1(data);
delete1(filename);
return false;
}
ImageUChar3D* image = new0 ImageUChar3D(bounds[0], bounds[1], bounds[2],
(Euchar*)data);
// Get the maximum bound.
int maxBound = image->GetBound(0);
if (image->GetBound(1) > maxBound)
{
maxBound = image->GetBound(1);
}
if (image->GetBound(2) > maxBound)
{
maxBound = image->GetBound(2);
}
mBound = 2*maxBound;
mHBound = (float)maxBound;
mRT = new0 RayTrace(image, mGamma);
delete0(image);
// Resize application window.
mWidth = mBound;
mHeight = mBound;
delete1(filename);
delete1(bounds);
return true;
}
//----------------------------------------------------------------------------
bool VolumeRenderer::OnInitialize ()
{
if (!WindowApplication2::OnInitialize())
{
return false;
}
mRT->Trace(1);
OnDisplay();
return true;
}
//----------------------------------------------------------------------------
void VolumeRenderer::OnTerminate ()
{
delete0(mRT);
WindowApplication2::OnTerminate();
}
//----------------------------------------------------------------------------
void VolumeRenderer::OnDisplay ()
{
mRT->DrawWireFrame();
for (int y = 0; y < mBound; ++y)
{
for (int x = 0; x < mBound; ++x)
{
int i = x + mBound*y;
unsigned int value = mRT->GetRendered(i);
unsigned char r = GetRed24(value);
unsigned char g = GetGreen24(value);
unsigned char b = GetBlue24(value);
SetPixel(x, y, ColorRGB(r, g, b));
}
}
WindowApplication2::OnDisplay();
}
//----------------------------------------------------------------------------
bool VolumeRenderer::OnMouseClick (int button, int state, int x, int y,
unsigned int)
{
if (button != MOUSE_LEFT_BUTTON)
{
return false;
}
if (state == MOUSE_DOWN)
{
mButtonDown = true;
mX0 = (x - mHBound)/mHBound;
mY0 = (y - mHBound)/mHBound;
}
else
{
mButtonDown = false;
mX1 = (x - mHBound)/mHBound;
mY1 = (y - mHBound)/mHBound;
if (mRT->MoveTrackBall(mX0, mY0, mX1, mY1))
{
mRT->Trace(1);
OnDisplay();
}
}
return true;
}
//----------------------------------------------------------------------------
bool VolumeRenderer::OnMotion (int, int x, int y, unsigned int)
{
if (!mButtonDown)
{
return false;
}
// Save old frame.
float saveFrame[3][3];
int row, col;
for (row = 0; row < 3; ++row)
{
for (col = 0; col < 3; ++col)
{
saveFrame[row][col] = mRT->Frame(row,col);
}
}
mX1 = (x - mHBound)/mHBound;
mY1 = (y - mHBound)/mHBound;
if (mRT->MoveTrackBall(mX0, mY0, mX1, mY1))
{
// Trace every second ray, then fill in with nearest neighbor values.
mRT->Trace(2);
OnDisplay();
// Restore old frame.
for (row = 0; row < 3; ++row)
{
for (col = 0; col < 3; ++col)
{
mRT->Frame(row,col) = saveFrame[row][col];
}
}
}
return true;
}
//----------------------------------------------------------------------------
bool VolumeRenderer::OnKeyDown (unsigned char key, int x, int y)
{
if (WindowApplication2::OnKeyDown(key, x, y))
{
return true;
}
switch (key)
{
case '+':
mGamma /= 1.1f;
mRT->Correction(mGamma);
OnDisplay();
return true;
case '-':
mGamma *= 1.1f;
mRT->Correction(mGamma);
OnDisplay();
return true;
}
return false;
}
//----------------------------------------------------------------------------
|