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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
|
// K-3D
// Copyright (c) 1995-2004, Timothy M. Shead
//
// Contact: tshead@k-3d.com
//
// 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; either
// version 2 of the License, or (at your option) any later version.
//
// 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 for more details.
//
// You should have received a copy of the GNU General Public
// License along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
/** \file
\brief Implements the LWO2Reader, which reads .lwo files (version 2) from LightWave 6
\author Romain Behar (romainbehar@yahoo.com)
*/
#include <k3dsdk/classes.h>
#include <k3dsdk/color.h>
#include <k3dsdk/file_helpers.h>
#include <k3dsdk/ideletable.h>
#include <k3dsdk/idocument.h>
#include <k3dsdk/ifile_format.h>
#include <k3dsdk/igeometry_read_format.h>
#include <k3dsdk/imaterial.h>
#include <k3dsdk/imaterial_collection.h>
#include <k3dsdk/iobject.h>
#include <k3dsdk/iobject_collection.h>
#include <k3dsdk/k3dilocation.h>
#include <k3dsdk/k3dimesh.h>
#include <k3dsdk/k3dipath.h>
#include <k3dsdk/k3dipathpointcollection.h>
#include <k3dsdk/k3dipoint.h>
#include <k3dsdk/log.h>
#include <k3dsdk/material.h>
#include <k3dsdk/module.h>
#include <k3dsdk/plugins.h>
#include <k3dsdk/result.h>
#include <k3dsdk/selection.h>
#include <k3dsdk/string_modifiers.h>
#include <k3dsdk/utility.h>
#include <k3dsdk/vectors.h>
#include <boost/filesystem/fstream.hpp>
#include <boost/filesystem/path.hpp>
#include <iostream>
namespace
{
k3dIPoint* CreatePoint(k3dIMesh* const Mesh, const k3d::vector3 Coords)
{
// Sanity checks ...
assert_warning(Mesh);
k3dIPoint* const point = Mesh->CreatePoint();
return_val_if_fail(point, 0);
point->Location()->SetLocalXYZ(Coords);
return point;
}
k3dIPath* CreatePath(k3dIMesh* const Mesh)
{
// Sanity checks ...
assert_warning(Mesh);
k3dIPath* const path = Mesh->CreatePath();
return_val_if_fail(path, 0);
return path;
}
/////////////////////////////////////////////////////////////////////////////
// lwo2_reader_implementation
class lwo2_reader_implementation :
public k3d::ifile_format,
public k3d::igeometry_read_format,
public k3d::ideletable
{
public:
unsigned long priority()
{
return 0;
}
bool query_can_handle(const boost::filesystem::path& FilePath)
{
const std::string ext = k3d::file_extension(FilePath);
return "lwo" == ext || "lw" == ext;
}
bool pre_read(k3d::idocument& Document, const boost::filesystem::path& FilePath)
{
return true;
}
bool read_options(k3d::idocument& Document, const boost::filesystem::path& FilePath)
{
return true;
}
bool read_file(k3d::idocument& Document, const boost::filesystem::path& FilePath);
k3d::iplugin_factory& factory()
{
return get_factory();
}
static k3d::iplugin_factory& get_factory()
{
static k3d::plugin_factory<k3d::application_plugin<lwo2_reader_implementation>, k3d::interface_list<k3d::igeometry_read_format> > factory(
k3d::uuid(0xee5d1140, 0x670843af, 0xba5fb9f3, 0x13d50f93),
"LWO2Reader",
"LightWave 6 ( .lwo )",
"");
return factory;
}
private:
unsigned short GetShort();
unsigned long GetLong();
double GetFloat();
std::string GetString();
unsigned long GetVariableLengthIndex();
k3d::color GetColor();
k3d::vector3 GetVector();
const std::string GetChunkId();
bool GetChunkInfo();
bool GetSubchunkInfo();
void SkipChunk();
void SkipSubchunk();
/// Enumerates LightWave file formats
typedef enum
{
LWOB,
LWO2
} LWOFormat;
bool ReadLayer();
bool LoadMesh(k3d::idocument& Document);
bool ReadPNTS();
bool ReadPOLSB(k3d::idocument& Document);
bool ReadPOLS2(k3d::idocument& Document);
bool ReadPTAG();
bool ReadTAGS();
bool ReadSurfaceDefinition();
bool ReadVertexMapping();
std::string m_CurrentChunkId;
unsigned long m_ChunkLength;
std::string m_CurrentSubchunkId;
unsigned long m_SubchunkLength;
unsigned char *m_Buf;
unsigned long m_BufSize;
unsigned char *m_Ptr;
LWOFormat m_CurrentFormat;
k3dIMesh* m_CurrentMesh;
std::vector<k3dIPoint*> m_CurrentPointList;
};
bool lwo2_reader_implementation::read_file(k3d::idocument& Document, const boost::filesystem::path& FilePath)
{
// Allocate a buffer and load file
boost::filesystem::ifstream file(FilePath, std::ios::in | std::ios::binary);
return_val_if_fail(file.good(), false);
file.seekg(0, std::ios::end);
m_BufSize = file.tellg();
file.seekg(0);
m_Buf = new (unsigned char)[m_BufSize];
file.read(reinterpret_cast<char*>(m_Buf), m_BufSize);
file.close();
m_Ptr = m_Buf;
bool ret = LoadMesh(Document);
// Free buffer
delete [] m_Buf;
return ret;
}
const std::string lwo2_reader_implementation::GetChunkId()
{
unsigned long id = GetLong();
std::string name("");
unsigned long val = (id >> 24) & 0xFF;
if(!val)
return name;
name += static_cast<char>(val);
val = (id >> 16) & 0xFF;
if(!val)
return name;
name += static_cast<char>(val);
val = (id >> 8) & 0xFF;
if(!val)
return name;
name += static_cast<char>(val);
val = id & 0xFF;
if(!val)
return name;
name += static_cast<char>(val);
return name;
}
bool lwo2_reader_implementation::GetChunkInfo()
{
// Get chunk ID and chunk length
if(m_Buf + m_BufSize - m_Ptr < 8)
return false;
m_CurrentChunkId = GetChunkId();
m_ChunkLength = GetLong();
std::cerr << debug << "Chunk ID : " << m_CurrentChunkId << ", length : " << m_ChunkLength << std::endl;
return true;
}
bool lwo2_reader_implementation::GetSubchunkInfo()
{
// Get sub-chunk ID and chunk length
if(m_Buf + m_BufSize - m_Ptr < 6)
return false;
if(m_ChunkLength == 0)
return false;
m_CurrentSubchunkId = GetChunkId();
m_SubchunkLength = static_cast<unsigned long>(GetShort());
std::cerr << debug << "Sub-chunk " << m_CurrentSubchunkId << ", length = " << m_SubchunkLength << std::endl;
return true;
}
void lwo2_reader_implementation::SkipChunk()
{
if(m_Ptr + m_ChunkLength <= m_Buf + m_BufSize)
m_Ptr += m_ChunkLength;
}
void lwo2_reader_implementation::SkipSubchunk()
{
if(m_Ptr + m_SubchunkLength <= m_Buf + m_BufSize)
{
m_Ptr += m_SubchunkLength;
m_ChunkLength -= m_SubchunkLength;
}
}
bool lwo2_reader_implementation::LoadMesh(k3d::idocument& Document)
{
// Check for LWO2 ID
return_val_if_fail(GetChunkInfo() == true, false);
return_val_if_fail(m_CurrentChunkId == "FORM", false);
const std::string id = GetChunkId();
return_val_if_fail(id == "LWO2" || id == "LWOB", false);
m_CurrentFormat = lwo2_reader_implementation::LWO2;
if(id == "LWOB")
m_CurrentFormat = lwo2_reader_implementation::LWOB;
// Create a new mesh object ...
static k3d::idocument_plugin_factory* const mesh_factory = dynamic_cast<k3d::idocument_plugin_factory*>(k3d::plugin(k3d::classes::FrozenMesh()));
return_val_if_fail(mesh_factory, false);
k3d::iobject* const object = mesh_factory->create_plugin(Document);
return_val_if_fail(object, false);
m_CurrentMesh = dynamic_cast<k3dIMesh*>(object);
return_val_if_fail(m_CurrentMesh, false);
k3d::select(Document, k3d::deep_selection(k3d::make_selection(*object)));
k3d::set_mouse_focus(Document, *object);
object->set_name("LightWave object");
Document.objects().add_objects(k3d::make_collection<k3d::iobject_collection::objects_t>(object));
// Loop through contained objects
while(GetChunkInfo() == true)
{
if(m_CurrentChunkId == "LAYR")
ReadLayer();
else if(m_CurrentChunkId == "PNTS")
ReadPNTS();
else if(m_CurrentChunkId == "POLS")
{
switch(m_CurrentFormat)
{
case lwo2_reader_implementation::LWO2 :
ReadPOLS2(Document);
break;
case lwo2_reader_implementation::LWOB :
ReadPOLSB(Document);
break;
default:
assert_not_reached();
}
}
else if(m_CurrentChunkId == "PTAG")
ReadPTAG();
else if(m_CurrentChunkId == "TAGS")
ReadTAGS();
else if(m_CurrentChunkId == "SURF")
ReadSurfaceDefinition();
else if(m_CurrentChunkId == "VMAP")
ReadVertexMapping();
else
{
SkipChunk();
std::cerr << debug << "Skipping ..." << std::endl;
}
}
return true;
}
unsigned short lwo2_reader_implementation::GetShort()
{
assert_warning(k3d::little_endian());
if(m_Ptr + 2 <= m_Buf + m_BufSize)
{
unsigned short ret = m_Ptr[1] + (m_Ptr[0]*0x100);
m_Ptr += 2;
m_ChunkLength -= 2;
return ret;
}
else
return 0;
}
unsigned long lwo2_reader_implementation::GetLong()
{
assert_warning(k3d::little_endian());
if(m_Ptr+4 <= m_Buf+m_BufSize)
{
unsigned long ret = m_Ptr[3] +
(m_Ptr[2]*0x100) +
(m_Ptr[1]*0x10000) +
(m_Ptr[0]*0x1000000);
m_Ptr += 4;
m_ChunkLength -= 4;
return ret;
}
else
return 0;
}
double lwo2_reader_implementation::GetFloat()
{
unsigned long raw = GetLong();
float value = *((float*)(&raw));
return static_cast<double>(value);
}
std::string lwo2_reader_implementation::GetString()
{
std::string s;
char c;
while((c = (char)(*m_Ptr++)))
s += c;
// Strings always have even length
if((s.length()+1) % 2 == 1)
m_Ptr++;
m_ChunkLength -= s.size() + 1;
if((s.size() + 1) % 2 == 1)
m_ChunkLength--;
return s;
}
unsigned long lwo2_reader_implementation::GetVariableLengthIndex()
{
assert_warning(k3d::little_endian());
assert_warning(m_Ptr + 2 <= m_Buf + m_BufSize);
if(m_Ptr + 2 <= m_Buf + m_BufSize)
{
if(m_Ptr[0] != 0xFF)
return static_cast<unsigned long>(GetShort());
else
return GetLong() & 0x00FFFFFF;
}
else
return 0;
}
k3d::color lwo2_reader_implementation::GetColor()
{
double red = GetFloat();
double green = GetFloat();
double blue = GetFloat();
return k3d::color(red, green, blue);
}
k3d::vector3 lwo2_reader_implementation::GetVector()
{
double x = GetFloat();
double y = GetFloat();
double z = GetFloat();
return k3d::vector3(x, y, z);
}
bool lwo2_reader_implementation::ReadPNTS()
{
unsigned long numv = m_ChunkLength / 4 / 3;
// POLS indexes are defined within the latest PNTS list
m_CurrentPointList.clear();
for(unsigned long i = 0; i < numv; i++)
{
k3d::vector3 coords;
coords[0] = GetFloat();
coords[1] = GetFloat();
coords[2] = GetFloat();
k3dIPoint* const point = CreatePoint(m_CurrentMesh, coords);
return_val_if_fail(point, false);
m_CurrentPointList.push_back(point);
}
return true;
}
bool lwo2_reader_implementation::ReadPOLSB(k3d::idocument& Document)
{
while(m_ChunkLength > 0)
{
unsigned short numvert = GetShort();
unsigned long facecount = static_cast<unsigned long>(numvert);
// Create a path ...
k3dIPath* const path = CreatePath(m_CurrentMesh);
return_val_if_fail(path, false);
for(unsigned long i = 0; i < facecount; i++)
{
unsigned short vid = GetShort();
unsigned long index = static_cast<unsigned long>(vid);
k3dIPathPoint* const pathpoint = path->Points()->AddPoint(m_CurrentPointList[index]);
return_val_if_fail(pathpoint, false);
}
// Surface used by the polygon ...
unsigned short surfid = GetShort();
// All paths should have a material
k3d::imaterial* const defaultmaterial = dynamic_cast<k3d::imaterial*>(k3d::default_material(Document));
path->Materials()->set_material(defaultmaterial);
}
if(m_ChunkLength != 0)
return false;
return true;
}
bool lwo2_reader_implementation::ReadPOLS2(k3d::idocument& Document)
{
const std::string chunk_id = GetChunkId();
if(chunk_id != "FACE")
{
std::cerr << debug << "Non face : " << chunk_id << std::endl;
}
while(m_ChunkLength > 0)
{
unsigned short flag = GetShort();
flag &= 1024-1;
unsigned long facecount = static_cast<unsigned long>(flag);
// Create a path ...
k3dIPath* const path = CreatePath(m_CurrentMesh);
return_val_if_fail(path, false);
for(unsigned long i = 0; i < facecount; i++)
{
unsigned short vid = GetShort();
unsigned long index = static_cast<unsigned long>(vid);
if(((vid >> 8) & 0xFF) == 0xFF)
{
index <<= 16;
index += static_cast<unsigned long>(GetShort());
}
k3dIPathPoint* const pathpoint = path->Points()->AddPoint(m_CurrentPointList[index]);
return_val_if_fail(pathpoint, false);
}
// All paths should have a material
k3d::imaterial* const defaultmaterial = dynamic_cast<k3d::imaterial*>(k3d::default_material(Document));
path->Materials()->set_material(defaultmaterial);
}
if(m_ChunkLength != 0)
return false;
return true;
}
bool lwo2_reader_implementation::ReadTAGS()
{
std::cerr << debug << "TAGS : " << std::endl;
while(m_ChunkLength > 0)
{
std::string name = GetString();
std::cerr << debug << " " << name << std::endl;
}
return true;
}
bool lwo2_reader_implementation::ReadPTAG()
{
const std::string type = GetChunkId();
if(type == "SURF")
{
}
else if(type == "PART")
{
}
else if(type == "SMPG")
{
}
else
assert_not_reached();
while(m_ChunkLength > 0)
{
unsigned long poly = GetVariableLengthIndex();
unsigned short tag = GetShort();
}
return true;
}
bool lwo2_reader_implementation::ReadVertexMapping()
{
const std::string type = GetChunkId();
if(type == "PICK")
{
}
else if(type == "WGHT")
{
}
else if(type == "MNVW")
{
}
else if(type == "TXUV")
{
}
else if(type == "RGB")
{
}
else if(type == "RGBA")
{
}
else if(type == "MORF")
{
}
else if(type == "SPOT")
{
}
else
assert_not_reached();
unsigned long dimension = static_cast<unsigned long>(GetShort());
std::string name = GetString();
std::cerr << debug << "VMAP name : " << name << std::endl;
while(m_ChunkLength > 0)
{
GetVariableLengthIndex();
for(unsigned long i = 0; i < dimension; i++)
GetFloat();
}
return true;
}
bool lwo2_reader_implementation::ReadSurfaceDefinition()
{
std::string name = GetString();
std::string source = GetString();
std::cerr << debug << "Name : " << name << ", source : " << source << std::endl;
// Read sub-chunks
while(GetSubchunkInfo())
{
if(m_CurrentSubchunkId == "COLR")
{
GetColor();
GetVariableLengthIndex();
}
else if(m_CurrentSubchunkId == "SMAN")
{
double max_smoothing_angle = GetFloat();
}
else
{
std::cerr << debug << "Unknown surface sub-chunk : skipping .." << std::endl;
SkipSubchunk();
}
}
return true;
}
bool lwo2_reader_implementation::ReadLayer()
{
unsigned short number = GetShort();
unsigned short flags = GetShort();
k3d::vector3 pivot = GetVector();
std::string name = GetString();
std::cerr << debug << "Layer : " << name << std::endl;
if(m_ChunkLength > 0)
{
unsigned short parent = GetShort();
}
}
} // namespace
namespace libk3dgeometry
{
k3d::iplugin_factory& lwo2_reader_factory()
{
return lwo2_reader_implementation::get_factory();
}
} // namespace libk3dgeometry
|