ADN Mesh Data Custom Exporter to JSON

I mentioned my idea of implementing a custom exporter to JSON to drive Philippe Leefsma's online 3D WebGL viewer.

Well, here it is.

Muttenhorn

Before getting to that, though, let me briefly mention that I went on a nice mountain with my friend Martin last Saturday, over the Gross Muttenhorn on the south side of the Furka pass.

A glacier named Muttgletscher lies over its north-western flanks, and we crossed that on our ascent up to the west ridge. From the summit we continued down the east ridge to descend between the three lakes next to the Stotzigen Firsten:

A lake at Stotzigen Firsten by Muttenhorn

Here are some more pictures if you be so inclined.

Gwen and Dave's Getaway

Another little non-Revit pointer is to the Gwen and Dave's Getaway animated short film contest. I really like the two top prize winners, Sky Fishing by Austin Reddington and Peace and Quiet by Khye Kading; well worth just a few minutes of your time.

Now, back to business.

ADN Mesh Data Custom Exporter

I was originally expecting to be done in just a few hours, but this turned out to be a full one day plus night project that kept me happily busy until four o'clock this morning, touching on numerous topics and challenges both named and unnamed, some of which are:

ADN Mesh Data Format

Before we can implement our custom exporter, we need a definition of the JSON format to generate. I analysed the files provided by Philippe and described the result in my comment on his post: I see the FacetCount, VertexCount, VertexCoords, VertexIndices, Normals, NormalIndices, Center, Color and Id properties define in the JSON file. Exactly how are these defined, and are some of them optional?

Philippe replies: the AdnMeshData class definition specifies the data format:

  public class AdnMeshData
  {
    public AdnMeshData()
    {
    }
 
    public int FacetCount
    {
      get;
      protected set;
    }
 
    public int VertexCount
    {
      get;
      protected set;
    }
 
    public double[] VertexCoords
    {
      get;
      protected set;
    }
 
    public int[] VertexIndices
    {
      get;
      protected set;
    }
 
    public double[] Normals
    {
      get;
      protected set;
    }
 
    public int[] NormalIndices
    {
      get;
      protected set;
    }
 
    public double[] Center
    {
      get;
      protected set;
    }
 
    public int[] Color
    {
      get;
      protected set;
    }
 
    public string Id
    {
      get;
      protected set;
    }
  }

All remaining issues are clarified by this little Q&A:

That should be enough to get us up and running.

Tetrahedron Sample JSON Data

After I completed my very first stab at the implementation and dragged the resulting JSON output file onto Philippe's web viewer, nothing was displayed.

By the way, I am making of this offline version that he provided for testing.

The reason turned out to be some misunderstanding about the triangle vertex order in the JSON input file.

To ensure I could understand what was going on and how the vertices need to be sorted, I implemented a little JSON file by hand defining a tetrahedron between the four points (0,0,0), (10,0,0), (0,10,0) and (0,0,10):

[
{
 "FacetCount":4,
 "VertexCount":4,
 "VertexCoords":[0,0,0, 10,0,0, 0,10,0, 0,0,10],
 "VertexIndices":[0,2,1, 0,1,3, 0,3,2, 1,2,3],
 "Normals":[0,0,-1, 0,-1,0, -1,0,0, 1,1,1],
 "NormalIndices":[0,0,0, 1,1,1, 2,2,2, 3,3,3],
 "Center":[3,3,3],
 "Color":[-2139062017],
 "Id":"tetrahedron"
}
]

Here is what it looks like in the web viewer:

WebGL viewer showing tetrahedron

Little House and Curved Wall in JSON

Once I had that sorted, I proceeded to debug the display of one single wall, and progressed to the little house generated by the ADN training labs.

In Revit, it looks like this in perspective view:

Little house in perspective view

The WebGL rendering of the JSON export looks like this:

Little house in WebGL

Finally, here is a rather strange sample BIM from Philippe, CurvedWall.rvt, its old JSON representation CurvedWall.json, generated using the Revit 2013 generator based on the ElementViewer SDK sample, and the new version CurvedWallJt.json generated by this custom exporter, looking like this in the WebGL viewer:

Curved wall model in WebGL

Custom Exporter Implementation and Components

I ended up reusing a number of components from previous projects for this little endeavour.

Here is CustomExporterAdnMeshJson.zip containing the complete source code, Visual Studio solution and add-in manifest for the ADN mesh data custom exporter external command add-in.

It consists of the following modules:

Which ones should we discuss in greater depth?

I will skip the integer-based point and lookup classes, since I have already belaboured them repeatedly in the past.

Centroid and Volume

The ADN mesh data format requires a centre point.

The custom exporter is fed faces, and does not have a built-in mechanism to identify solids.

Therefore, the determination of a centre point needs to be based on the facets we receive instead.

Happily, I already discussed how to determine centroid and volume using an algorithm that calculates and stores these properties from a set of triangular facets.

I cleaned up the previous implementation to make its use more obvious, and it now looks like this:

class CentroidVolume
{
  XYZ _centroid;
  double _volume;
 
  public CentroidVolume()
  {
    Init();
  }
 
  public void Init()
  {
    _centroid = XYZ.Zero;
    _volume = 0.0;
  }
 
  public void AddTriangle( XYZ[] p )
  {
    double vol
      = p[0].X * ( p[1].Y * p[2].Z - p[2].Y * p[1].Z )
      + p[0].Y * ( p[1].Z * p[2].X - p[2].Z * p[1].X )
      + p[0].Z * ( p[1].X * p[2].Y - p[2].X * p[1].Y );
 
    _centroid += vol * ( p[0] + p[1] + p[2] );
    _volume += vol;
  }
 
  /// <summary>
  /// Set centroid coordinates and volume 
  /// to their final values when completed.
  /// </summary>
  public void Complete()
  {
    _centroid /= 4 * _volume;
    _volume /= 6;
  }
 
  public XYZ Centroid
  {
    get
    {
      return _centroid;
    }
  }
 
  public double Volume
  {
    get
    {
      return _volume;
    }
  }
 
  override public string ToString()
  {
    return Util.RealString( _volume ) + "@"
      + Util.PointString( _centroid );
  }
}

In my current test implementation, I just close the calculation when an element ends.

This should probably be improved to terminate every time the material changes, to handle cases like windows with several different components using different materials.

Actually, you can see that the windows in the screen snapshots above are not perfectly rendered due to this.

Export Context Implementation

By far the most complex module is the export context implementation.

The IExportContext interface specifies the following methods:

  void Finish();
  bool IsCanceled();
  void OnDaylightPortal( DaylightPortalNode node );
  RenderNodeAction OnElementBegin( ElementId elementId );
  void OnElementEnd( ElementId elementId );
  RenderNodeAction OnFaceBegin( FaceNode node );
  void OnFaceEnd( FaceNode node );
  RenderNodeAction OnInstanceBegin( InstanceNode node );
  void OnInstanceEnd( InstanceNode node );
  void OnLight( LightNode node );
  RenderNodeAction OnLinkBegin( LinkNode node );
  void OnLinkEnd( LinkNode node );
  void OnMaterial( MaterialNode node );
  void OnPolymesh( PolymeshTopology node );
  void OnRPC( RPCNode node );
  RenderNodeAction OnViewBegin( ViewNode node );
  void OnViewEnd( ElementId elementId );
  bool Start();

A very few of them can be left unimplemented, at least in my simple test project, but most need attention. I left the NotImplementedException statements in the unimplemented ones, so that I am notified if they are called.

I implemented some rudimentary logging to see in which order the methods are called in the debug output window.

A number of the methods provide support for cancelling the rendering process and need to return true or RenderNodeAction.Proceed for it to continue.

Family instances and links need to push their transformations onto a stack, and all vertices received need to be transformed appropriately.

Here is the complete implementation of the ADN mesh data export context in its current state:

class ExportContextAdnMesh : IExportContext
{
  Document _doc;
 
  /// <summary>
  /// Stack of transformations for 
  /// link and instance elements.
  /// </summary>
  Stack<Transform> _transformationStack
    = new Stack<Transform>();
 
  /// <summary>
  /// List of triangle vertices.
  /// </summary>
  VertexLookupInt _vertices = new VertexLookupInt();
 
  /// <summary>
  /// List of triangles, defined as 
  /// triples of vertex indices.
  /// </summary>
  List<int> _triangles = new List<int>();
 
  /// <summary>
  /// List of normal vectors, defined by an index 
  /// into the normal lookup for each triangle vertex.
  /// </summary>
  List<int> _normalIndices = new List<int>();
 
  NormalLookupXyz _normals = new NormalLookupXyz();
 
  /// <summary>
  /// Calculate centre of gravity of current element.
  /// </summary>
  CentroidVolume _centroid_volume
    = new CentroidVolume();
 
  Color _color;
  double _transparency;
  List<AdnMeshData> _data;
 
  public ExportContextAdnMesh( Document doc )
  {
    _doc = doc;
    _data = new List<AdnMeshData>();
    _transformationStack.Push( Transform.Identity );
  }
 
  public AdnMeshData[] MeshData
  {
    get
    {
      return _data.ToArray();
    }
  }
 
  Transform CurrentTransform
  {
    get
    {
      return _transformationStack.Peek();
    }
  }
 
  /// <summary>
  /// Store a triangle, adding new vertices for it
  /// to our vertex lookup dictionary if needed and
  /// accumulating its volume and centroid contribution.
  /// </summary>
  void StoreTriangle(
    IList<XYZ> vertices,
    PolymeshFacet triangle,
    XYZ normal )
  {
    // Retrieve the three triangle vertices
 
    Transform currentTransform = CurrentTransform;
 
    XYZ[] p = new XYZ[] {
      currentTransform.OfPoint( vertices[triangle.V1] ),
      currentTransform.OfPoint( vertices[triangle.V2] ),
      currentTransform.OfPoint( vertices[triangle.V3] )
    };
 
    // Ensure the three are ordered counter-clockwise
 
    XYZ v = p[1] - p[0];
    XYZ w = p[2] - p[0];

    Debug.Assert( Util.IsRightHanded( v, w, normal ),
      "expected counter-clockwise vertex order" );
 
    // Centroid and volume calculation
 
    _centroid_volume.AddTriangle( p );
 
    // Store vertex, facet and normals
 
    for( int i = 0; i < 3; ++i )
    {
      PointInt q = new PointInt( p[i] );
 
      _triangles.Add( _vertices.AddVertex( q ) );
 
      _normalIndices.Add( _normals.AddNormal(
        currentTransform.OfVector( normal ) ) );
    }
  }
 
  public void Finish()
  {
    Debug.Print( "Finish" );
  }
 
  public bool IsCanceled()
  {
    return false;
  }
 
  public void OnDaylightPortal(
    DaylightPortalNode node )
  {
    throw new NotImplementedException();
  }
 
  public RenderNodeAction OnElementBegin(
    ElementId elementId )
  {
    string s = elementId.IntegerValue.ToString();
 
    Debug.Print( "ElementBegin id " + s );
 
    _vertices.Clear();
    _triangles.Clear();
    _normals.Clear();
    _normalIndices.Clear();
    _centroid_volume.Init();
 
    return RenderNodeAction.Proceed;
  }
 
  public void OnElementEnd( ElementId elementId )
  {
    Debug.Print( "ElementEnd" );
 
    // Set centroid coordinates to their final value
 
    _centroid_volume.Complete();
 
    string metadataId = _doc.GetElement(
      elementId ).UniqueId;
 
    AdnMeshData meshData = new AdnMeshData(
      _vertices, _triangles, _normals, _normalIndices,
      new PointInt( _centroid_volume.Centroid ),
      _color, _transparency, metadataId );
 
    _data.Add( meshData );
  }
 
  public RenderNodeAction OnFaceBegin( FaceNode node )
  {
    throw new NotImplementedException();
  }
 
  public void OnFaceEnd( FaceNode node )
  {
    throw new NotImplementedException();
  }
 
  public RenderNodeAction OnInstanceBegin(
    InstanceNode node )
  {
    FamilySymbol symbol = _doc.GetElement(
      node.GetSymbolId() ) as FamilySymbol;
 
    Debug.Assert( null != symbol,
      "expected valid family symbol" );
 
    Debug.Print( "InstanceBegin "
      + symbol.Category.Name + " : "
      + symbol.Family.Name + " : "
      + symbol.Name );
 
    _transformationStack.Push( CurrentTransform
      .Multiply( node.GetTransform() ) );
 
    return RenderNodeAction.Proceed;
  }
 
  public void OnInstanceEnd( InstanceNode node )
  {
    Debug.Print( "InstanceEnd" );
 
    _transformationStack.Pop();
  }
 
  public void OnLight( LightNode node )
  {
    throw new NotImplementedException();
  }
 
  public RenderNodeAction OnLinkBegin( LinkNode node )
  {
    _transformationStack.Push( CurrentTransform
      .Multiply( node.GetTransform() ) );
 
    throw new NotImplementedException();
  }
 
  public void OnLinkEnd( LinkNode node )
  {
    _transformationStack.Pop();
 
    throw new NotImplementedException();
  }
 
  public void OnMaterial( MaterialNode node )
  {
    Color c = node.Color;
    double t = node.Transparency;
 
    string s = string.Format( "({0},{1},{2})",
      c.Red, c.Green, c.Blue );
 
    Debug.Print( "Colour " + s + ", transparency "
      + t.ToString( "0.##" ) );
 
    _color = c;
    _transparency = t;
  }
 
  public void OnPolymesh( PolymeshTopology node )
  {
    int nPts = node.NumberOfPoints;
    int nFacets = node.NumberOfFacets;
 
    DistributionOfNormals distrib
      = node.DistributionOfNormals;
 
    Debug.Print( string.Format(
      "Polymesh {0} vertices {1} facets",
      nPts, nFacets ) );
 
    int iFacet = 0;
    int iPoint = 0;
 
    IList<XYZ> vertices = node.GetPoints();
    IList<XYZ> normals = node.GetNormals();
    XYZ normal;
 
    foreach( PolymeshFacet triangle in node.GetFacets() )
    {
      // Just grab one normal per facet; ignore the 
      // three normals per point if they differ.
 
      if( DistributionOfNormals.OnePerFace == distrib )
      {
        normal = node.GetNormal( 0 );
      }
      else if( DistributionOfNormals.OnEachFacet
        == distrib )
      {
        normal = node.GetNormal( iFacet++ );
      }
      else
      {
        Debug.Assert( DistributionOfNormals
          .AtEachPoint == distrib, "what else?" );
 
        normal = node.GetNormal( iPoint++ )
          + node.GetNormal( iPoint++ )
          + node.GetNormal( iPoint++ );
        normal /= 3.0;
      }
 
      StoreTriangle( vertices, triangle, normal );
    }
  }
 
  public void OnRPC( RPCNode node )
  {
    throw new NotImplementedException();
  }
 
  public RenderNodeAction OnViewBegin( ViewNode node )
  {
    View3D view = _doc.GetElement( node.ViewId )
      as View3D;
 
    Debug.Assert( null != view,
      "expected valid 3D view" );
 
    Debug.Print( "ViewBegin " + view.Name );
 
    return RenderNodeAction.Proceed;
  }
 
  public void OnViewEnd( ElementId elementId )
  {
    Debug.Print( "ViewEnd" );
  }
 
  public bool Start()
  {
    Debug.Print( "Start" );
    return true;
  }
}

The rendering generates a list of AdnMeshData instances.

Each one of them contains the data required to render one solid.

ADN Mesh Data Class

Here are the methods used to structure and store the ADN mesh data:

class AdnMeshData
{
  int FacetCount { get; set; } // optional
  int VertexCount { get; set; } // optional
  int[] VertexCoords { get; set; }
  int[] VertexIndices { get; set; } // triangles
  double[] Normals { get; set; }
  int[] NormalIndices { get; set; } // not optional, one normal per vertex
  int[] Center { get; set; }
  int Color { get; set; }
  string Id { get; set; }
 
  /// <summary>
  /// Apply this factor to all point data when 
  /// saving to JSON to accomodate the expected
  /// scaling.
  /// </summary>
  const double _export_factor = 0.002;
 
  public AdnMeshData(
    VertexLookupInt vertices,
    List<int> vertexIndices,
    NormalLookupXyz normals,
    List<int> normalIndices,
    PointInt center,
    Color color,
    double transparency,
    string id )
  {
    int n = vertexIndices.Count;
 
    Debug.Assert( 0 == (n % 3),
      "expected triples of 3D point vertex indices" );
 
    Debug.Assert( normalIndices.Count == n,
      "expected a normal for each vertex" );
 
    FacetCount = n / 3;
 
    n = vertices.Count;
    VertexCount = n;
    VertexCoords = new int[n * 3];
    int i = 0;
    foreach( PointInt p in vertices.Keys )
    {
      VertexCoords[i++] = p.X;
      VertexCoords[i++] = p.Y;
      VertexCoords[i++] = p.Z;
    }
    VertexIndices = vertexIndices.ToArray();
 
    n = normals.Count;
    Normals = new double[n * 3];
    i = 0;
    foreach( XYZ v in normals.Keys )
    {
      Normals[i++] = v.X;
      Normals[i++] = v.Y;
      Normals[i++] = v.Z;
    }
    NormalIndices = normalIndices.ToArray();
 
    Center = new int[3];
    i = 0;
    Center[i++] = center.X;
    Center[i++] = center.Y;
    Center[i] = center.Z;
 
    byte alpha = (byte) (
      ( 100 - transparency ) * 2.55555555 );
 
    Color = ConvertClr(
      color.Red, color.Green, color.Blue, alpha );
 
    Id = id;
  }
 
  /// <summary>
  /// Convert colour and transparency to 
  /// the required integer format.
  /// </summary>
  static int ConvertClr( byte r, byte g, byte b, byte a )
  {
    return ( r << 24 ) + ( g << 16 ) + ( b << 8 ) + a;
  }

That completes the input side of this class.

It is followed by the output:

JSON Serialisation

Once the ADN mesh data has been assembled, I want to export it to a JSON file to pass into Philippe's viewer.

I did think of using a JSON serialisation library. The .NET framework provides two different ones:

In addition, numerous other libraries are available.

I read a nice short discussion on their various advantages and disadvantages, resulting in the author rolling his own FridayThe13th library.

That prompted me to simply implement the serialisation myself inline in a member method of the AdnMeshData class like this:

public string ToJson()
{
  string s = string.Format
    ( "\n \"FacetCount\":{0},"
    + "\n \"VertexCount\":{1},"
    + "\n \"VertexCoords\":[{2}],"
    + "\n \"VertexIndices\":[{3}],"
    + "\n \"Normals\":[{4}],"
    + "\n \"NormalIndices\":[{5}],"
    + "\n \"Center\":[{6}],"
    + "\n \"Color\":[{7}],"
    + "\n \"Id\":\"{8}\"",
    FacetCount,
    VertexCount,
    string.Join( ",", VertexCoords.Select<int, string>( i => ( _export_factor * i ).ToString( "0.#" ) ).ToArray() ),
    string.Join( ",", VertexIndices.Select<int, string>( i => i.ToString() ).ToArray() ),
    string.Join( ",", Normals.Select<double, string>( a => a.ToString( "0.####" ) ).ToArray() ),
    string.Join( ",", NormalIndices.Select<int, string>( i => i.ToString() ) ),
    string.Join( ",", Center.Select<int, string>( i => ( _export_factor * i ).ToString( "0.#" ) ) ),
    Color,
    Id );
 
  return "\n{" + s + "\n}";
}

Notice the last minute scaling applied via the _export_factor to generate a model in a suitable size for Philippe's viewer :-)

Driving the Process and Streaming to File

The command mainline checks for a valid 3D view in a valid project document, then drives the exporter and retrieves its mesh data instances to serialise the data to JSON like this:

[Transaction( TransactionMode.ReadOnly )]
public class Command : IExternalCommand
{
  public Result Execute(
    ExternalCommandData commandData,
    ref string message,
    ElementSet elements )
  {
    UIApplication uiapp = commandData.Application;
    UIDocument uidoc = uiapp.ActiveUIDocument;
    Application app = uiapp.Application;
    Document doc = uidoc.Document;
 
    // This command requires an active document
 
    if( null == uidoc )
    {
      message = "Please run this command in an active project document.";
      return Result.Failed;
    }
 
    View3D view = doc.ActiveView as View3D;
 
    if( null == view )
    {
      message = "Please run this command in a 3D view.";
      return Result.Failed;
    }
 
    // Instantiate our custom context
 
    ExportContextAdnMesh context
      = new ExportContextAdnMesh( doc );
 
    // Instantiate a custom exporter with it
 
    using( CustomExporter exporter
      = new CustomExporter( doc, context ) )
    {
      // Tell the exporter whether we need face info.
      // If not, it is better to exclude them, since 
      // processing faces takes significant time and 
      // memory. In any case, tessellated polymeshes
      // can be exported (and will be sent to the 
      // context). Excluding faces just excludes the calls, 
      // not the actual processing of face tessellation. 
      // Meshes of the faces will still be received by 
      // the context.
 
      exporter.IncludeFaces = false;
 
      exporter.Export( view );
    }
 
    // Save ADN mesh data in JSON format
 
    StreamWriter s = new StreamWriter(
      "C:/tmp/test.json" );
 
    s.Write( "[" );
 
    int i = 0;
 
    foreach( AdnMeshData d in context.MeshData )
    {
      if( 0 < i ) { s.Write( ',' ); }
 
      s.Write( d.ToJson() );
 
      ++i;
    }
 
    s.Write( "\n]\n" );
    s.Close();
 
    return Result.Succeeded;
  }
}

The complete code and solution is available for download above.

The only remaining open issue with this right now that I am aware of is how to generate different ADN mesh data instances for different materials, e.g. separate output for a window pane and its frame.

So now we have three different and pretty diverse custom exporters to experiment with.

I am looking forward to hearing what experiences you have with the custom exporter framework.


Cloud and Mobile

Revit ADN Mesh Data Custom Exporter to JSON

By Jeremy Tammik.

I implemented a new Revit 2014 custom exporter to JSON generating the ADN mesh data to drive Philippe Leefsma's online 3D WebGL viewer.

This is obviously mainly of interest to Revit API aficionados, though some of the topics covered are completely generic cloud and mobile issues as well:

The post also mentions my most recent mountain hike to the Muttenhorn :-)

A lake at Stotzigen Firsten by Muttenhorn