License delivery maintenance is planned for Saturday, July 26, between 12:00 and 20:00 CEST. During this time, you may experience outages or limited availability across our services, including BIMcloud SaaS, License Delivery, Graphisoft ID (for customer and company management), Graphisoft Store, and BIMx Web Viewer. More details…

GDL
About building parametric objects with GDL.

Defining an array based on an integer parameter

JGoode
Expert

Hello,

 

I'm trying to define an array by an integer. I want my array to have an equal amount of fields as an integer. I want to be able to use the array fields to define positions of elements so they need to hold the values while more are added or removed based on the integer.

 

This is what I have currently, however it locks the value to 0 as I would expect. I'm just not sure how to achieve what I'm after.

 

DIM num_position_x2[]
DIM num_position_y2[]
if (glob_modpar_name = "num_steps") or (glob_modpar_name = "total_distance") then

	for i=1 to num_steps2
		num_position_x2[i] = 0
		num_position_y2[i] = 0
	next i
	parameters num_position_x2=num_position_x2	
	parameters num_position_y2=num_position_y2
endif

 

Thanks!

ArchiCAD 27

Windows 10
1 REPLY 1
runxel
Hero

You're on the right track!

You will need to shadow the parameters. I have prepared a small but working example, which can be easily extended to suit all your needs.

 

dim EMPTYARRAY[]

if GLOB_MODPAR_NAME = "n_steps" then
	if n_steps_shadow < n_steps then
		! We have more steps than before
		for i=(n_steps_shadow+1) to n_steps
			! init those values
			x_pos[i] = 0.0
		next i
	else
		! Less steps then before
		dim _newx[]
		for i=1 to n_steps
			_newx[i] = x_pos[i]
		next i
		x_pos = EMPTYARRAY
		x_pos = _newx
	endif
	n_steps_shadow = n_steps
endif

parameters \
	x_pos = x_pos,
	n_steps_shadow = n_steps_shadow

 

 

Lucas Becker | AC 27 on Mac | Graphisoft Insider Panelist | Akroter.io – high-end GDL objects | Author of Runxel's Archicad Wiki | Editor at SelfGDL | Developer of the GDL plugin for Sublime Text

My List of AC shortcomings & bugs | I Will Piledrive You If You Mention AI Again |

POSIWID – The Purpose Of a System Is What It Does /// «Furthermore, I consider that Carth... yearly releases must be destroyed»