2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#include "IndexGenerator.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
QUAD simulator
|
|
|
|
|
|
|
|
0 2 4 6
|
|
|
|
1 3 5 7
|
|
|
|
021231 243453
|
|
|
|
*/
|
|
|
|
|
|
|
|
void IndexGenerator::Start(unsigned short *startptr)
|
|
|
|
{
|
2009-09-01 19:48:45 +00:00
|
|
|
ptr = startptr;
|
|
|
|
index = 0;
|
|
|
|
numPrims = 0;
|
2009-09-19 13:14:55 +00:00
|
|
|
adds = 0;
|
2009-09-26 12:39:12 +00:00
|
|
|
indexLen = 0;
|
2009-09-19 13:14:55 +00:00
|
|
|
onlyLists = true;
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IndexGenerator::AddList(int numVerts)
|
|
|
|
{
|
2009-09-01 19:48:45 +00:00
|
|
|
int numTris = numVerts / 3;
|
|
|
|
if (numTris <= 0) return;
|
|
|
|
for (int i = 0; i < numTris; i++)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
*ptr++ = index+i*3;
|
|
|
|
*ptr++ = index+i*3+1;
|
|
|
|
*ptr++ = index+i*3+2;
|
|
|
|
}
|
2009-09-26 12:39:12 +00:00
|
|
|
indexLen += numVerts;
|
2008-12-08 05:25:12 +00:00
|
|
|
index += numVerts;
|
|
|
|
numPrims += numTris;
|
2009-09-19 13:14:55 +00:00
|
|
|
adds++;
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IndexGenerator::AddStrip(int numVerts)
|
|
|
|
{
|
2009-09-01 19:48:45 +00:00
|
|
|
int numTris = numVerts - 2;
|
|
|
|
if (numTris <= 0) return;
|
2008-12-08 05:25:12 +00:00
|
|
|
bool wind = false;
|
2009-09-01 19:48:45 +00:00
|
|
|
for (int i = 0; i < numTris; i++)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
*ptr++ = index+i;
|
|
|
|
*ptr++ = index+i+(wind?2:1);
|
|
|
|
*ptr++ = index+i+(wind?1:2);
|
|
|
|
wind = !wind;
|
|
|
|
}
|
2009-09-26 12:39:12 +00:00
|
|
|
indexLen += numTris * 3;
|
2008-12-08 05:25:12 +00:00
|
|
|
index += numVerts;
|
|
|
|
numPrims += numTris;
|
2009-09-19 13:14:55 +00:00
|
|
|
adds++;
|
|
|
|
onlyLists = false;
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IndexGenerator::AddLineList(int numVerts)
|
|
|
|
{
|
2009-09-01 19:48:45 +00:00
|
|
|
int numLines= numVerts / 2;
|
|
|
|
if (numLines <= 0) return;
|
|
|
|
for (int i = 0; i < numLines; i++)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
*ptr++ = index+i*2;
|
|
|
|
*ptr++ = index+i*2+1;
|
|
|
|
}
|
2009-09-26 12:39:12 +00:00
|
|
|
indexLen += numVerts;
|
2008-12-08 05:25:12 +00:00
|
|
|
index += numVerts;
|
|
|
|
numPrims += numLines;
|
2009-09-19 13:14:55 +00:00
|
|
|
adds++;
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IndexGenerator::AddLineStrip(int numVerts)
|
|
|
|
{
|
2009-09-01 19:48:45 +00:00
|
|
|
int numLines = numVerts - 1;
|
|
|
|
if (numLines <= 0) return;
|
|
|
|
for (int i = 0; i < numLines; i++)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
*ptr++ = index+i;
|
|
|
|
*ptr++ = index+i+1;
|
|
|
|
}
|
2009-09-26 12:39:12 +00:00
|
|
|
indexLen += numLines * 2;
|
2008-12-08 05:25:12 +00:00
|
|
|
index += numVerts;
|
|
|
|
numPrims += numLines;
|
2009-09-19 13:14:55 +00:00
|
|
|
adds++;
|
|
|
|
onlyLists = false;
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IndexGenerator::AddFan(int numVerts)
|
|
|
|
{
|
2009-09-01 19:48:45 +00:00
|
|
|
int numTris = numVerts - 2;
|
|
|
|
if (numTris <= 0) return;
|
|
|
|
for (int i = 0; i < numTris; i++)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
*ptr++ = index;
|
|
|
|
*ptr++ = index+i+1;
|
|
|
|
*ptr++ = index+i+2;
|
|
|
|
}
|
2009-09-26 12:39:12 +00:00
|
|
|
indexLen += numTris * 3;
|
2008-12-08 05:25:12 +00:00
|
|
|
index += numVerts;
|
|
|
|
numPrims += numTris;
|
2009-09-19 13:14:55 +00:00
|
|
|
adds++;
|
|
|
|
onlyLists = false;
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IndexGenerator::AddQuads(int numVerts)
|
|
|
|
{
|
|
|
|
int numTris = (numVerts/4)*2;
|
2009-09-01 19:48:45 +00:00
|
|
|
if (numTris <= 0) return;
|
|
|
|
for (int i = 0; i < numTris / 2; i++)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
2009-09-01 19:48:45 +00:00
|
|
|
*ptr++ = index+i*4;
|
|
|
|
*ptr++ = index+i*4+1;
|
|
|
|
*ptr++ = index+i*4+3;
|
|
|
|
*ptr++ = index+i*4+1;
|
|
|
|
*ptr++ = index+i*4+2;
|
|
|
|
*ptr++ = index+i*4+3;
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
2009-09-26 12:39:12 +00:00
|
|
|
indexLen += numTris * 3;
|
2008-12-08 05:25:12 +00:00
|
|
|
index += numVerts;
|
|
|
|
numPrims += numTris;
|
2009-09-19 13:14:55 +00:00
|
|
|
adds++;
|
|
|
|
onlyLists = false;
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
2009-09-19 13:14:55 +00:00
|
|
|
void IndexGenerator::AddPoints(int numVerts)
|
2008-12-08 05:25:12 +00:00
|
|
|
{
|
|
|
|
index += numVerts;
|
2009-09-19 13:14:55 +00:00
|
|
|
numPrims += numVerts;
|
|
|
|
adds++;
|
|
|
|
}
|
2009-09-29 18:27:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Init
|
|
|
|
void IndexGenerator2::Start(unsigned short *Triangleptr,unsigned short *Lineptr,unsigned short *Pointptr)
|
|
|
|
{
|
|
|
|
Tptr = Triangleptr;
|
|
|
|
Lptr = Lineptr;
|
|
|
|
Pptr = Pointptr;
|
|
|
|
index = 0;
|
|
|
|
numT = 0;
|
|
|
|
numL = 0;
|
|
|
|
numP = 0;
|
|
|
|
Tadds = 0;
|
|
|
|
Ladds = 0;
|
|
|
|
Padds = 0;
|
|
|
|
TindexLen = 0;
|
|
|
|
LindexLen = 0;
|
|
|
|
PindexLen = 0;
|
2009-09-30 00:28:27 +00:00
|
|
|
LastTPrimitive = Prim_None;
|
|
|
|
LastLPrimitive = Prim_None;
|
2009-09-29 18:27:41 +00:00
|
|
|
}
|
|
|
|
// Triangles
|
|
|
|
void IndexGenerator2::AddList(int numVerts)
|
|
|
|
{
|
|
|
|
int numTris = numVerts / 3;
|
|
|
|
if (numTris <= 0) return;
|
|
|
|
for (int i = 0; i < numTris; i++)
|
|
|
|
{
|
|
|
|
*Tptr++ = index+i*3;
|
|
|
|
*Tptr++ = index+i*3+1;
|
|
|
|
*Tptr++ = index+i*3+2;
|
|
|
|
}
|
|
|
|
TindexLen += numVerts;
|
|
|
|
index += numVerts;
|
|
|
|
numT += numTris;
|
|
|
|
Tadds++;
|
2009-09-30 00:28:27 +00:00
|
|
|
LastTPrimitive = Prim_List;
|
2009-09-29 18:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IndexGenerator2::AddStrip(int numVerts)
|
|
|
|
{
|
|
|
|
int numTris = numVerts - 2;
|
|
|
|
if (numTris <= 0) return;
|
|
|
|
bool wind = false;
|
|
|
|
for (int i = 0; i < numTris; i++)
|
|
|
|
{
|
|
|
|
*Tptr++ = index+i;
|
|
|
|
*Tptr++ = index+i+(wind?2:1);
|
|
|
|
*Tptr++ = index+i+(wind?1:2);
|
|
|
|
wind = !wind;
|
|
|
|
}
|
|
|
|
TindexLen += numTris * 3;
|
|
|
|
index += numVerts;
|
|
|
|
numT += numTris;
|
|
|
|
Tadds++;
|
2009-09-30 00:28:27 +00:00
|
|
|
LastTPrimitive = Prim_Strip;
|
2009-09-29 18:27:41 +00:00
|
|
|
}
|
|
|
|
void IndexGenerator2::AddFan(int numVerts)
|
|
|
|
{
|
|
|
|
int numTris = numVerts - 2;
|
|
|
|
if (numTris <= 0) return;
|
|
|
|
for (int i = 0; i < numTris; i++)
|
|
|
|
{
|
|
|
|
*Tptr++ = index;
|
|
|
|
*Tptr++ = index+i+1;
|
|
|
|
*Tptr++ = index+i+2;
|
|
|
|
}
|
|
|
|
TindexLen += numTris * 3;
|
|
|
|
index += numVerts;
|
|
|
|
numT += numTris;
|
|
|
|
Tadds++;
|
2009-09-30 00:28:27 +00:00
|
|
|
LastTPrimitive = Prim_Fan;
|
2009-09-29 18:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IndexGenerator2::AddQuads(int numVerts)
|
|
|
|
{
|
|
|
|
int numTris = (numVerts/4)*2;
|
|
|
|
if (numTris <= 0) return;
|
|
|
|
for (int i = 0; i < numTris / 2; i++)
|
|
|
|
{
|
|
|
|
*Tptr++ = index+i*4;
|
|
|
|
*Tptr++ = index+i*4+1;
|
|
|
|
*Tptr++ = index+i*4+3;
|
|
|
|
*Tptr++ = index+i*4+1;
|
|
|
|
*Tptr++ = index+i*4+2;
|
|
|
|
*Tptr++ = index+i*4+3;
|
|
|
|
}
|
|
|
|
TindexLen += numTris * 3;
|
|
|
|
index += numVerts;
|
|
|
|
numT += numTris;
|
|
|
|
Tadds++;
|
2009-09-30 00:28:27 +00:00
|
|
|
LastTPrimitive = Prim_List;
|
2009-09-29 18:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//Lines
|
|
|
|
void IndexGenerator2::AddLineList(int numVerts)
|
|
|
|
{
|
|
|
|
int numLines= numVerts / 2;
|
|
|
|
if (numLines <= 0) return;
|
|
|
|
for (int i = 0; i < numLines; i++)
|
|
|
|
{
|
|
|
|
*Lptr++ = index+i*2;
|
|
|
|
*Lptr++ = index+i*2+1;
|
|
|
|
}
|
|
|
|
LindexLen += numVerts;
|
|
|
|
index += numVerts;
|
|
|
|
numL += numLines;
|
|
|
|
Ladds++;
|
2009-09-30 00:28:27 +00:00
|
|
|
LastLPrimitive = Prim_List;
|
2009-09-29 18:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IndexGenerator2::AddLineStrip(int numVerts)
|
|
|
|
{
|
|
|
|
int numLines = numVerts - 1;
|
|
|
|
if (numLines <= 0) return;
|
|
|
|
for (int i = 0; i < numLines; i++)
|
|
|
|
{
|
|
|
|
*Lptr++ = index+i;
|
|
|
|
*Lptr++ = index+i+1;
|
|
|
|
}
|
|
|
|
LindexLen += numLines * 2;
|
|
|
|
index += numVerts;
|
|
|
|
numL += numLines;
|
|
|
|
Ladds++;
|
2009-09-30 00:28:27 +00:00
|
|
|
LastLPrimitive = Prim_Strip;
|
2009-09-29 18:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Points
|
|
|
|
void IndexGenerator2::AddPoints(int numVerts)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < numVerts; i++)
|
|
|
|
{
|
|
|
|
*Pptr++ = index+i;
|
|
|
|
}
|
|
|
|
index += numVerts;
|
|
|
|
numP += numVerts;
|
|
|
|
PindexLen+=numVerts;
|
|
|
|
Padds++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|