Bugs in Player: Bindings and running mode difference

Today I discovered two strange behaviors of the Dynamo Player in Civil 3D and I assume they are bugs. I hope anyone can confirm this.

A test script is added: Test_3Dpoly.dyn (15.6 KB)

It places simple texts along a curve that you select.

Case 1: I start the Player and edit the input. I can select a polyline and the script places texts next to it as seen below:

When I select a second (shorter) line and run the script again, it does not remove all of the previous placed texts, as seen below:

(If not, please check if the script is running in Automatic mode.)

Case 2: I edit the script and change the run mode from automatic to manual and run the script from the Player again. Now it does not remove any of the previous placed texts!

When I run the script directly from Dynamo it works fine, both in Manual and in Automatic mode.

Two issues here:

  1. The player does not cleanup every previous generated geometry in automatic mode and differs from running directly in Dynamo,
  2. The player does not cleanup at all in manual mode.

@Paolo_Emilio_Serra1 do you know the most appropriate place to log Civil Player problems?

1 Like

Internal is likely the best location for this.

FYI @nigel.peters @Nora.Li

3 Likes

@Anton_Huizinga - I tried your script and I am seeing the same behavior.

1 Like

Hi @Anton_Huizinga @mzjensen

Is this what you guys looking for?

That is what I said, running from Dynamo it works as expected.

Alright! What do you need? Keep text on selection or remove text using player?

It’s not the binding that is the discussion here, it is the player. I would like (and expect) that the player gives the same result as running from Dynamo.

Actually it is. Bindings do not occur until you save the graph and close it. There is no way to circumvent binding in player for civil 3D, as such each run will remove previously created elements.

Try the in-Dynamo test again but close Dynamo between runs. This will show the binding behavior persisting even in a Dynamo environment.

1 Like

Hi Anton,
Would you share what’s the version of Dynamo for Civil 3D are you working on?

Thx,
Nora

image

The behavior of the player is the discussion here. As you read in my first post the player has different result if a graph was set to run manually or automatically, and there is a difference between the result of the player and running from Dynamo directly.

Yes, and I am pointing out that the first issue is 100% related to how bindings are being mismanaged by Dynamo for Civil 3D in ANY environment (headless via Player or in the D4C3D environment).

To illustrate that this is bindings I put this example together - the same would happen with automatic run but that’s more difficult to show as I’d have to edit the graph in textural form first (which while doable isn’t necessarily intended use).

Binding Issues

Apparently the GIF is too big so it’s down sampling to an illegible size… this link should suffice.
https://myshare.autodesk.com/:i:/g/personal/jacob_small_autodesk_com/EWPfXzIz8y9FgW_45qm1GIkBF7_83GuoU71yMA83LdlmWQ?e=Y2VLFX

I cannot for the life of me get the second option to recreate - it may be that you did a save as in between auto and manual

1 Like

Thanks Jacob for the clear example. I can reproduce it. This behavior makes the whole situation even more unpredictable and unreliable.

If I run the graph from Dynamo, and it is set to run automatically, Dynamo removes every generated geometry first before recreating the new geometry, also when I close Civil 3D and save the drawing in between. So the persistent binding works as designed (that non-optional persistent binding is an undesirable solution is another discussion but it works as expected).

If I change the run mode to manual, save the graph, close and restart Civil 3D and rerun the graph from Dynamo in the saved drawing, then Dynamo only removes as many of the previously generated geometry as it will recreate. So in my example, it now leaves ten texts to the rightmost line, where it removed them in automatically mode. But! While in a session Dynamo will cleanup all the generated entities, even if you recreate less new entities in a new run!

Running the manually graph from Dynamo has the same behavior as running the automatically graph in the player!

With the player you can’t mimic the behavior of Dynamo in combination with the automatic graph and with Dynamo you can’t reproduce the behavior of the player with a manual graph.

I really don’t know how I can still enthusiastically advice my customers to use Dynamo in their workflow :confused:

Me: “Dynamo could have been a great solution to do anything you ever wanted. But be aware of persistent binding so you can’t use the graph more then one time in a drawing. Oh, and don’t ever set the run mode to manual if you want to rerun the graph later! And please, never use the player! Really. By the way, if your IT manager complains about fuzz maps and cache files everywhere on the server, it comes from Dynamo. Don’t worry.”

Customer: “Could we use Lisp instead?”

Me: " :zipper_mouth_face: "

2 Likes

We are looking at improvements and more user control over how the bindings are handled. Placing binding data in the dwg is a requirement for a lot of people and supports shared workflows. We are hoping to support full control of how the data is stored allowing for the flexibility to handle all the issues reported

This entire thread points out the absolute need to be able to control Binding within the graph itself.
It’s definitely a problem if the behavior is inconsistent between run methods, but there cannot be an absolute preference.
There are some graphs where you need persistent Binding, and others where you cannot have it.
I ran into almost the identical issue when I was making a graph to lay out theater seating.
I needed the graph to NOT have binding if I was laying out unique rows, but I also wanted binding ON if I was experimenting with different options for a single row.
Also, if binding is persistent, it can make debugging really hard. Again, there are times you want binding, and other times when it gets in the way

2 Likes

Here’s a temporary workaround that I’ve found that seems to have consistent results. I’ve only tested this on scripts that have inputs. Also note that this seems to only work in conjunction with deleting the DWG trace data dictionary at the end of the script as described here.

After running the script, go back to the main Dynamo Player screen and click “Refresh”. Then go back to the script and it should create new objects on the next run.

2 Likes

I’m not sure if that is the solution of the difference between player and application. The player already removes previously added geometry but not as much as the application.

A few weeks ago I had a meeting with the product owner of Dynamo for Civil 3D and we spoke about the trace data, or binding. I have a little hope every issue with object binding will be solved in a future release. Then this issue is probably solved too.