Export/Import SDK
#1
Posted 13 May 2008 - 05:32 PM
For V2:
www.3d-coat.com/files/3D-CoatSDK-210.zip
For V3.7:
http://www.3d-coat.com/files/3D-CoatSDK-V37.zip
This is first version of 3D-Coat SDK. It allows to create plugins for export/import of different 3D-files. To start you should download and unpack 3DCoatSDK.zip . Then you shoud open soluton ExportImport.sln. It requires at least MS VisualStudio 2008 Standart Edition to be properly compiled. Compile project. It is better to use “Release” configuration. You will get Odj.DLL file on output. This simple plugin is a sample for importing OBJ files. Obj.DLL should be copied to
$3D-CoatInstallationFolder\Plugins\MeshCodecs\
To understand how plugins work open files cMeshObj.h. You will see there class that is derived from cMeshCodec (It is defined in cIO.h).
class cMeshCodec {
public:
cMeshCodec() {}
virtual ~cMeshCodec() {}
virtual cMeshContainer * Decode(const cData &Fm) = 0;
virtual void Encode(const cMeshContainer &Mesh, cData *To) = 0;
virtual bool CanEncode(){return true;}
virtual bool CanDecode(){return true;}
};
To create new codec you should derive your class from cMeshCodec and re-define functions Encode and Decode. Decode should return filled object cRawMesh and Encode should fill Data structure cData using cMeshContainer. You can look and discover objects cData and cMeshContainer. After redefining functions you should change class name in ExportImport.cpp. I think it is very easy. The only not so easy task is filling/reading structure cMeshContainer. It is mesh that consists of:
uv-sets (see GetUVSets() )
Matrials(surfaces) (see GetMaterials() )
Objects (see GetObjects() )
PositionVertices (see GetPositions() )
UV-vertices (see GetTexCoords() )
Normals (see GetNormals() )
Faces (see GetRaw() )
To understand how it works it is better to discover how cMeshObj.cpp encodes/decodes obj – files. I will explain slightly how Faces list is organised.
Faces are array of cVec3i – 3 integer values
Count, - amount of polygones in face
idMtl = MaterialIndex + (UV-set index<<16) – index of material and uv-set
idObj - index of object
Next “Count” values are 3-indices of vertices that are part of face
PositionIndex (index in array of position vertices)
TexturevertexIndex (index in array of texture vertices, can be -1)
NormalIndex (index in array of normals, can be -1)
The best method to learn is to ask in forum and discover how cMeshObj is done.
Good luck!
Edit:
Updated to be able to use with V3.7. New SDK link (includes 2 samples OBJ export/import and FBX import):
http://www.3d-coat.com/files/3D-CoatSDK-V37.zip
#2
Posted 25 May 2008 - 02:26 AM
This topic was translated into Japanese
http://numa3d.seesaa...e/97876878.html
#3
Posted 25 May 2008 - 07:53 AM
Thank you! That is very cool!It is wonderful information!
This topic was translated into Japanese![]()
http://numa3d.seesaa.net/article/97876878.html
#4
Posted 15 September 2008 - 07:53 PM
To get this far I had to comment out the operator overrides in 'newmem.h' because calls to 3d-coat.lib require 3d-coat.exe, but now there's only 3d-coatDX & GL, so the DLL fails to load and if I rename 3d-coatDX -> 3d-coat.exe, the plug-in silently fails.
I've tried with Visual Studio 2005 and 2008 (professional) and also this problem happens on both XP and Vista.
Can you confirm whether the SDK is working at the moment? is it just me?
#5
Posted 15 September 2008 - 08:15 PM
There was no users of SDK, so it was suspended. I will resume it.
Thanks for interest!
#6
Posted 16 September 2008 - 12:38 PM
www.3d-coat.com/files/3D-CoatSDK-210.zip
Now it will work with 2.10. But... special 2.10 version is required. It will be distributed soon among users. You can download 2.10 that accepts plugins properly there:
www.3d-coat.com/files/3d-Coat-2-10.09.exe
*edit: I have changed links to more recent.
#7
Posted 16 September 2008 - 03:05 PM
I have updated the link to SDK.
www.3d-coat.com/files/3D-CoatSDK.zip
Now it will work with 2.10. But... special 2.10 version is required. It will be distributed soon among users. You can download 2.10 that accepts plugins properly there:
www.3d-coat.com/files/3d-Coat-2-10.08.exe
Great, thank you!
#8
Posted 16 September 2008 - 05:09 PM
3D_CoatSDK_20080916.zip 194.28K
514 downloadsThanks for the rapid response in getting this SDK working again!
#9
Posted 22 September 2008 - 08:55 PM
Should cMeshIO::AddCodec() be called and displayed for my plugin in the log.txt file ?
Cheers.
#10
Posted 23 September 2008 - 07:25 AM
If you add your codec for export/import new extension appears in Import and export dialogs.When I add my plugin to the \Plugins\MeshCodecs folder and run 3D Coat, where exactly does the plugin information appear on the menus ?
Should cMeshIO::AddCodec() be called and displayed for my plugin in the log.txt file ?
Cheers.
Also, if loading codec is successful, you will finnd
cMeshIO::AddCodec(): Added "your_extension" mesh codec.
in Log.txt
Also, David, thanks for correcting! But it seems sometimes removing "newmem" can cause memory errors. I will try to correct it finally soon.
#11
Posted 23 September 2008 - 08:23 AM
If you add your codec for export/import new extension appears in Import and export dialogs.
Also, if loading codec is successful, you will finnd
cMeshIO::AddCodec(): Added "your_extension" mesh codec.
in Log.txt
Thanks for the clarification. I compiled the Obj example that comes with the SDK and copied the Obj.dll into the respective location. When loading 3DC it complained that 3D-Coat.exe could not be found, so I renamed 3D-CoatGL.exe to 3D-Coat.exe. Is this correct ? If so, then my plugin is still not being loaded, has anyone got this working ?
#12
Posted 23 September 2008 - 10:11 AM
If you will rename 3D-CoatGL or DX to 3D-Coat and rud 3D-Coat.exe it will work. It is one way to get it to work.Thanks for the clarification. I compiled the Obj example that comes with the SDK and copied the Obj.dll into the respective location. When loading 3DC it complained that 3D-Coat.exe could not be found, so I renamed 3D-CoatGL.exe to 3D-Coat.exe. Is this correct ? If so, then my plugin is still not being loaded, has anyone got this working ?
As David Walters mentioned, it tries to load 3D-Coat.exe . He has remade project to avoid this. But it can lead to some memory errors.
I will modify project to avoid all that problems.
#13
Posted 23 September 2008 - 11:14 AM
1) Download SDK at www.3d-coat.com/files/3D-CoatSDK-210.zip
2) Download newest version of 3D-Coat at www.3d-coat.com/files/3d-Coat-2-10.09.exe
#14
Posted 23 September 2008 - 11:16 AM
Don't forget that 'obj' is already supported by 3d-Coat, so if you want to make sure it's your code being run then change the extension to something else, "tst" or something.If so, then my plugin is still not being loaded, has anyone got this working ?
I've also been able to run the plug-in through the Visual Studio debugger, then you can set breakpoints on the various API functions and watch as 3DC calls your code, to do this simply ensure appropriate debugging information has been built into the DLL and set [Properties] > [Debugging] > [Command] to 3d-coatDX.exe (or GL, and don't forget to set the working directory too). Then just hit 'run' like a normal executable project and Visual Studio make it all just work :lol:
I'm not sure how best to solve the memory errors, I assumed something bad would happen on deallocation if I didn't use the custom allocator defined by newmem.h - but it's the closest I got to success - renaming the EXE didn't work for me, the DLL loaded and then unloaded immediately .. I don't know why.
Regards,
Dave
#15
Posted 23 September 2008 - 11:25 AM
#16
Posted 23 September 2008 - 12:32 PM
Now (in newest SDK) I am getting adrresses of allocation procedures dynamically - you can look at dllmain.cpp, I removed dependence on 3D-Coat.lib
Thanks Andrew, the new SDK and 3DC work great for me.
Cheers.
#17
Posted 25 September 2008 - 08:26 AM
Thanks Andrew, the new SDK and 3DC work great for me.
Cheers.
Quick feature request, nothing urgent, but would it be possible at some point to add the ability to create extra check boxes in the Export dialog from the SDK ?
#18
Posted 27 September 2008 - 06:42 PM
Quick feature request, nothing urgent, but would it be possible at some point to add the ability to create extra check boxes in the Export dialog from the SDK ?
I second this request. If it were also possible to add text boxes that could access metadata stored with the 3DC file, we could make use of the asset elements in Collada, to track authorship, copyright, licensing, and version/revision numbers.
There's also a field in the asset tag to specify the authoring tool, which would help to promote the fact that a given model was made with 3DC, but just as importantly, will lead to the ability to automatically re-import models when they are changed in 3DC, since the Collada asset element can point at the original 3DC file, making it possible for a third-party tool to check when it has been modified.
#19
Posted 20 January 2009 - 07:29 AM
Hi all! I have made 3D-Coat SDK v 1.0. It required at least 3D-Coat 2.10.09 (www.3d-coat.com/files/3d-Coat-2-10.09.exe) You can download it there:
www.3d-coat.com/files/3D-CoatSDK-210.zip
This is first version of 3D-Coat SDK. It allows to create plugins for export/import of different 3D-files. To start you should download and unpack 3DCoatSDK.zip . Then you shoud open soluton ExportImport.sln. It requires at least MS VisualStudio 2008 Standart Edition to be properly compiled. Compile project. It is better to use “Release” configuration. You will get Odj.DLL file on output. This simple plugin is a sample for importing OBJ files. Obj.DLL should be copied to
$3D-CoatInstallationFolder\Plugins\MeshCodecs\
To understand how plugins work open files cMeshObj.h. You will see there class that is derived from cMeshCodec (It is defined in cIO.h).
class cMeshCodec {
public:
cMeshCodec() {}
virtual ~cMeshCodec() {}
virtual cMeshContainer * Decode(const cData &Fm) = 0;
virtual void Encode(const cMeshContainer &Mesh, cData *To) = 0;
virtual bool CanEncode(){return true;}
virtual bool CanDecode(){return true;}
};
AAAAAaaaa it'sall greek to me. You guys are going to make me pull out what's left of this old farts hair.. Ecuse me while iI jump off the roof. LOL fishbelt
#20
Posted 28 June 2009 - 08:37 AM
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users













