Anim8or Community

Please login or register.

Login with username, password and session length
Advanced search  

News:

Ian Ross has just released a book on Anim8or. It's perect for a beginner and a good reference for experienced users. It contains detailed chapters on every aspect, with many examples. Get your own copy here: "Anim8or Tutorial Book"

Author Topic: assistant~script reverse normals !  (Read 8081 times)

BOB_I_Ts

  • Full Member
  • ***
  • Posts: 157
    • View Profile
    • Anim8rOrg
assistant~script reverse normals !
« on: March 22, 2010, 11:10:12 am »

i made mini script to help reduce amount of time to put coordinates into a8s script it works perfect for the task it was indented but the vertexn  output has the sequence in reverse so faces on the generate data are flipped around the wrong way?

here is the assistant script originaly based from looking at the code in Steves obj export script
Code: [Select]
/* assistant script v0.02 ~ object mesh wirecage must match to work on final a8s*/
#plugin("object", "export", "a8s quicky", ".txt");
#file($output, "text");
#return($result);
file $output;
int $result;

object $curObject;
shape $shape;
meshdata $mdata,$mdat1,$mdat2;
int $numPoints,$numfaces,$numsides;
int $totalP,$totaln;
int $ii,$jj;
int $tshape;
point3 $point,$m1,$m2,$m1f,$m2f;
float4x4 $transp;
string $aname,$bname,$cname;

/*(search mesh by name temp code) */

$aname = "cage";
$bname = "morph1";
$cname = "morph2";

for $tshape = 0 to 2 do {
if ($tshape == 0 ) {
$shape = project.curObject.LookupShape($aname);
}
if ($tshape == 1 ) {
$shape = project.curObject.LookupShape($bname);
}
if ($tshape == 2 ) {
$shape = project.curObject.LookupShape($cname);
}

$curObject = project.curObject; /*access the active object mode !*/
$output.print("#object \"%s\":\n",$shape.name); /*this line not needed in final script*/
$mdata = $shape.GetMeshData(); /*shape load the data*/
$transp = $shape.GetGlobalTransform(); /*transp search the data matrix !*/
$numPoints = $mdata.GetNumPoints(); /*counts the points*/




for $ii = 0 to $numPoints - 1 do {
$point = $mdata.GetPoint($ii);
$point = $transp.Project($point);
$output.print("$p.x = %.6g ; $p.y = %.6g ; $p.z = %.6g ; $index[",$point);
$output.print("%d", $ii);
$output.print("] = $face.AddPoint($p); \n");
}



$numfaces = $mdata.GetNumFaces();

for $ii = 0 to $numfaces - 1 do {
$numsides = $mdata.GetNumSides($ii);
$output.print("$face.OpenFace(0,4);");
for $jj =  0 to $numsides -1 step 1 do {
$output.print("$face.VertexN(");
$output.print("%d",$mdata.GetFacePointIndex($ii,$jj) );
$output.print(");");
}
$output.print("$face.CloseFace(); \n");

}
 }

/*
current planning v0.3

~ reminder find out how to get script to print font (") to files
~ add a8s parameters to exported file

goal = (cage coordinate) +/- (morph cordinate) * by  100 = #parameter 

~finding the morph should go somthing like !
if ($point.x > $m1.x ) {
$m1f = $point.x - $m1.x;
$output.print("-%d",$m1f.x);
}

if ($point.x < $m1.x ) {
$m1f = $point.x - $m1.x;
$output.print("%d",$m1f.x);
}

*/

edit: haven't had time to play with scripts have an abandoned siberian husky pup which isnt  house trained yet keeping me on constantly on my toes ...much more difficult than a german shepherd to house train :'(
« Last Edit: March 25, 2010, 05:05:12 pm by BOB_I_Ts »
Logged

Kubajzz

  • Flying Platypus
  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 548
  • Little doggie ate my avatar...
    • View Profile
Re: assistant~script reverse normals !
« Reply #1 on: March 22, 2010, 01:44:05 pm »

Interesting script BOB_I_Ts!

If the normals are reversed, you need to reverse the order of vertices in each face. Change the loop where you are calling "VertexN" to make it go the opposite way, that should fix the problem...

I guess you are going to use this script for your generic head script... Good luck with that, I'd love to see it finished.
Logged

BOB_I_Ts

  • Full Member
  • ***
  • Posts: 157
    • View Profile
    • Anim8rOrg
Re: assistant~script reverse normals !
« Reply #2 on: March 22, 2010, 05:59:42 pm »

Duh slaps head so obvious.

"for $jj =  0 to $numsides -1 step 1 do {---}" thanks for reminder it will certainly  reduce the mountain of cords 630 point3 coords :-\

asl doesnt search morph data that im aware of so id need to probably separate morphs into mesh of same curobject then rename them so script can search and compare them (after all the point index should still be identical !) then tweak exporter with something like
if point3 > do morph value - parent value */which should return morph coordinate !
then if point3 < do parent value - morph value
then == skip print  $ii = $ii + 1
... anim8or asl will practically write script for me i hope .... john connar shouldn't be worried about sky net he should worry about asl.
Logged