User Tools

Site Tools


visual3d:documentation:pipeline:pipeline_commands:pipeline_breakpoint

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
visual3d:documentation:pipeline:pipeline_commands:pipeline_breakpoint [2024/06/14 17:29] – created sgrangervisual3d:documentation:pipeline:pipeline_commands:pipeline_breakpoint [2025/06/20 20:00] (current) – Cleaned up page. wikisysop
Line 1: Line 1:
-|**Language:**|** English**  • [[index.php?title=Pipeline_Breakpoint/fr&action=edit&redlink=1|français]] • [[index.php?title=Pipeline_Breakpoint/it&action=edit&redlink=1|italiano]] • [[index.php?title=Pipeline_Breakpoint/pt&action=edit&redlink=1|português]] • [[index.php?title=Pipeline_Breakpoint/es&action=edit&redlink=1|español]] ****| +====== Pipeline Breakpoint ======
- +
-|===== Contents =====\\ \\ \\ \\ * [[#Syntax_Issue|1 Syntax Issue]]\\ * [[#Example_Pipeline|2 Example Pipeline]]|+
  
 This command will place a breakpoint in the pipeline that will allow the user assess their current progress before continuing. A dialog will pop-up and a custom message will be shown to the user along with two buttons: one allowing you to resume and the other if you wish to halt. The command is as follows: This command will place a breakpoint in the pipeline that will allow the user assess their current progress before continuing. A dialog will pop-up and a custom message will be shown to the user along with two buttons: one allowing you to resume and the other if you wish to halt. The command is as follows:
  
-**Pipeline_Breakpoint**+<code> 
 +Pipeline_Breakpoint
 /PAUSE_MESSAGE= /PAUSE_MESSAGE=
-**;** +
-The message can be formatted using a simple version of the rtf file format.+</code>
  
-For example, the following command will output four separate lines in the breakpoint prompt dialg+===== Formatting Message in RTF =====
  
-**Pipeline_Breakpoint**+The message can be formatted using a simple version of the rtf file format. For example, the following command will output four separate lines in the breakpoint prompt dialg 
 + 
 +<code> 
 +Pipeline_Breakpoint
 /PAUSE_MESSAGE= {\rtf1\ansi\deff0 /PAUSE_MESSAGE= {\rtf1\ansi\deff0
 \pard One\par \pard One\par
Line 19: Line 21:
 \pard Four\par \pard Four\par
 } }
-**;** +
-====== Syntax Issue ======+</code>
  
-Consider the following:+===== Syntax Considerations =====
  
 +Consider the following command:
 +
 +<code>
 +Pipeline_Breakpoint
 /PAUSE_MESSAGE=08/09/2017 by WSS Speed = 0.4 /PAUSE_MESSAGE=08/09/2017 by WSS Speed = 0.4
-forward slash (/) is a special character for pipeline commands that indicates that a parameter_name follows immediately afterwards. +
-If an equals sign (=follows Visual3D confirms that a parameter was specified. +</code> 
-Two equals signs (==), however, does confirm that a parameter was specified. + 
-Visual3D searches for an equals sign after each slash because this logically indicates that the user has specified a parameter. +This pause message includes several special characters, notably the forward slash (/) which is a special character for pipeline commands indicating that a parameter name follows immediately afterwards. If an equals sign, "=", follows Visual3D confirms that a parameter was specified. Two equals signs, "==", however, does confirm that a parameter was specified. 
-Pause_Message is assigned the string 08/09 + 
-Visual3D finds an equals sign after the next slash, so interprets the rest of the string as a new parameter +In this example, Visual3D searches for an equals sign after each slash because this logically indicates that the user has specified a parameter. The /Pause_Message parameter is assigned the string 08/09 and then Visual3D finds an equals sign after the next slash, so interprets the rest of the string as a new parameter "/2017 by WSS Speed = 0.4". Visual3D won't do anything with this parameter because it doesn't recognize it. 
-/2017 by MJT using Modify_Speed_Metric_Ver01 Speed = 0.4 + 
-It doesn't do anything with this parameter because it doesn't recognize it. +The solution to this syntax issue is to either remove the "=sign
-Solution +<code>
-remove the = sign+
 /PAUSE_MESSAGE=08/09/2017 by WSS Speed 0.4 /PAUSE_MESSAGE=08/09/2017 by WSS Speed 0.4
-or specify two equals signs+</code> 
 + 
 +or to specify two equals signs "==": 
 +<code>
 /PAUSE_MESSAGE=08/09/2017 by WSS Speed == 0.4 /PAUSE_MESSAGE=08/09/2017 by WSS Speed == 0.4
-====== Example Pipeline ======+</code> 
 + 
 +===== Example =====
  
 <code> <code>
Line 94: Line 104:
 </code> </code>
  
- 
-Retrieved from "" 
  
  
visual3d/documentation/pipeline/pipeline_commands/pipeline_breakpoint.1718386157.txt.gz · Last modified: 2024/06/14 17:29 by sgranger