Difference between revisions of "Reference Talk:Array"

From POV-Wiki
Jump to navigation Jump to search
m (consistency)
m (fixed typos etc)
Line 4: Line 4:
 
{{#indexentry:dictionary, array}}
 
{{#indexentry:dictionary, array}}
 
{{#indexentry:array}}
 
{{#indexentry:array}}
<p>You may declare arrays of identifiers with up to five dimensions. Any item that can be declared as an identifier can be declared in an array. A {{New}} feature in version 3.7.1 extends <code>array</code> functionality to allow the creation of <code>dictionary</code> container types. Dictionaries can support mapping string keys to arbitrary-type values.</p>
+
<p>You may declare arrays of identifiers with up to five dimensions. Any item that can be declared as an identifier can be declared in an array. Consequential to the improvements with the classic <code>array</code> container topology, a {{New}} feature in version 3.7.1 extended functionality to allow the creation of <code>dictionary</code> container types. Dictionaries can be used for mapping string keys to arbitrary-type values.</p>
  
 
{{#indexentry:Array, declaring}}
 
{{#indexentry:Array, declaring}}
 
{{#indexentry:Declaring, arrays}}
 
{{#indexentry:Declaring, arrays}}
 
==Declaring Arrays==
 
==Declaring Arrays==
<p>The syntax for declaring an <code>array</code> is as follows:</p>
+
<p>The syntax is as follows:</p>
  
 
<pre>
 
<pre>
Line 19: Line 19:
 
ARRAY_ITEM:
 
ARRAY_ITEM:
 
   RVALUE | ARRAY_INITIALIZER
 
   RVALUE | ARRAY_INITIALIZER
</pre>
 
 
<p>The syntax for declaring a <code>dictionary</code> is as follows:</p>
 
 
<pre>
 
 
DICTIONARY_DECLARATION:
 
DICTIONARY_DECLARATION:
 
   #declare IDENTIFIER = dictionary; | #local IDENTIFIER = dictionary;
 
   #declare IDENTIFIER = dictionary; | #local IDENTIFIER = dictionary;
Line 38: Line 33:
 
<p>Where IDENTIFIER is the name of the identifier and INT is a valid float expression, internally truncated to an integer, and used to specify the size of the array.</p>
 
<p>Where IDENTIFIER is the name of the identifier and INT is a valid float expression, internally truncated to an integer, and used to specify the size of the array.</p>
  
<p class="Note"><strong>Note:</strong> In previous versions IDENTIFIER names <em>were</em> limited to 40 characters. There has been a {{Change}} that removes than restriction.</p>
+
<p class="Note"><strong>Note:</strong> In previous versions IDENTIFIER names <em>were</em> limited to 40 characters. There has been a {{Change}} removing that restriction.</p>
  
 
<p>See [[Reference:Array#Array Initializers|Array Initializers]] for more about the optional <em>ARRAY_INITIALIZER</em> parameter.</p>
 
<p>See [[Reference:Array#Array Initializers|Array Initializers]] for more about the optional <em>ARRAY_INITIALIZER</em> parameter.</p>
  
<p>Here is an example of a one-dimensional, uninitialized array:</p>
+
<p>Consider the following example of a one-dimensional, uninitialized array:</p>
  
 
<pre>
 
<pre>
Line 48: Line 43:
 
</pre>
 
</pre>
  
<p>It declares an uninitialized array of ten elements. The elements are referenced as <code>MyArray[0]</code> through <code>MyArray[9]</code>. As yet, the type of the elements are undetermined. Once you have initialized any element of the array, all other elements can only be defined as that type.</p>
+
<p>It declares an uninitialized array of ten elements. The elements are referenced as <code>MyArray[0]</code> through <code>MyArray[9]</code>. As yet, the type of the elements are undetermined. Once you have initialized any element of the array, all other elements can only be defined as that type. Any attempt to reference an uninitialized element results in an error. More below:</p>
<p>An attempt to reference an uninitialized element results in an error. See the following:</p>
 
  
 
<pre>
 
<pre>
Line 75: Line 69:
 
</pre>
 
</pre>
  
<p>The <code>[[Reference:Conditional Directives#The ifdef and ifndef Directives|#ifdef]]</code> and <code>[[Reference:Conditional Directives#The ifdef and ifndef Directives|#ifndef]]</code> directives can be used to check whether a specific element of an array has been declared. For methods to determine the size of an array look in the float section for <code>[[Reference:Numeric Expressions#Functions|dimensions]]</code> and
+
<p>The <code>[[Reference:Conditional Directives#The ifdef and ifndef Directives|#ifdef]]</code> and <code>[[Reference:Conditional Directives#The ifdef and ifndef Directives|#ifndef]]</code> directives can be used to check whether a specific element of an array has been declared. See also: <code>[[Reference:Numeric Expressions#Functions|dimensions]]</code> and <code>[[Reference:Numeric Expressions#Functions|dimension_size]]</code> for additional information about the methods used to determine the size of arrays.</p>
<code>[[Reference:Numeric Expressions#Functions|dimension_size]]</code>.</p>
 
  
 
<p>Large uninitialized arrays do not take much memory. Internally they are arrays of pointers so they probably use just 8 bytes per element. Once initialized with values, they consume memory depending on what they contain.</p>
 
<p>Large uninitialized arrays do not take much memory. Internally they are arrays of pointers so they probably use just 8 bytes per element. Once initialized with values, they consume memory depending on what they contain.</p>
  
<p>The rules for local vs. global arrays are the same as any other identifier.</p>
+
<p>The rules for <em>local</em> vs <em>global</em> arrays are the same as any other identifier.</p>
  
 
<p class="Note"><strong>Note:</strong> This applies to the entire array. You cannot mix local and global
 
<p class="Note"><strong>Note:</strong> This applies to the entire array. You cannot mix local and global
Line 87: Line 80:
 
<p>Any legitimate use of the <code>#declare</code> directive can also be put into an array. In other words, you can also create multidimensional arrays by making an array of arrays.</p>
 
<p>Any legitimate use of the <code>#declare</code> directive can also be put into an array. In other words, you can also create multidimensional arrays by making an array of arrays.</p>
  
<p>When declaring <em>dictionaries</em> be aware of the following:</p>
+
<p>Additional points to consider are as follows:</p>
 
<ol>
 
<ol>
 
   <li>Array elements will no longer have to be all of the same type. <em>Caveats</em> listed below:</li>
 
   <li>Array elements will no longer have to be all of the same type. <em>Caveats</em> listed below:</li>
Line 106: Line 99:
 
</ol>
 
</ol>
  
<p>Here are some usage examples:</p>
+
<p>Additional usage examples are as follows:</p>
  
 
<pre>
 
<pre>
Line 132: Line 125:
 
#declare Answer = Fnord.Foo;
 
#declare Answer = Fnord.Foo;
  
// testing whether a dictionary contains a particular key
+
// test whether a dictionary contains a particular key
 
#ifdef (Fnord["Foo"]) ... #end
 
#ifdef (Fnord["Foo"]) ... #end
 
#declare FooKeyExists = defined(Fnord.Foo);
 
#declare FooKeyExists = defined(Fnord.Foo);
  
// removing a key from a dictionary
+
// remove a key from a dictionary
 
#undef Fnord["Foo"];
 
#undef Fnord["Foo"];
 
</pre>
 
</pre>
 
  
 
{{#indexentry:Array, initialization}}
 
{{#indexentry:Array, initialization}}
 
{{#indexentry:Initialization, arrays}}
 
{{#indexentry:Initialization, arrays}}
 
 
==Array Initializers==
 
==Array Initializers==
 
<p>Because it can be cumbersome to individually initialize the elements of an array, you may initialize it as it is created using <code>array</code> initializer syntax.</p>
 
<p>Because it can be cumbersome to individually initialize the elements of an array, you may initialize it as it is created using <code>array</code> initializer syntax.</p>

Revision as of 14:03, 24 November 2016

You may declare arrays of identifiers with up to five dimensions. Any item that can be declared as an identifier can be declared in an array. Consequential to the improvements with the classic array container topology, a New feature in version 3.7.1 extended functionality to allow the creation of dictionary container types. Dictionaries can be used for mapping string keys to arbitrary-type values.

Declaring Arrays

The syntax is as follows:

ARRAY_DECLARATION:
  #declare IDENTIFIER = array[ INT ][[ INT ]]..[ARRAY_INITIALIZER] |
  #local IDENTIFIER = array[ INT ][[ INT ]]..[ARRAY_INITIALIZER]
ARRAY_INITIALIZER:
  {ARRAY_ITEM, [ARRAY_ITEM, ]... }
ARRAY_ITEM:
  RVALUE | ARRAY_INITIALIZER
DICTIONARY_DECLARATION:
  #declare IDENTIFIER = dictionary; | #local IDENTIFIER = dictionary;
  #declare IDENTIFIER = dictionary DICTIONARY_INITIALIZER |
  #local IDENTIFIER = dictionary DICTIONARY_INITIALIZER
DICTIONARY_INITIALIZER:
  {DICTIONARY_ITEM, [DICTIONARY_ITEM, ]... }
DICTIONARY_ITEM:
  ["STRING"]: DICTIONARY_ENTRY | .STRING_IDENTIFIER: DICTIONARY_ENTRY
DICTIONARY_ENTRY:
  Any valid array entry

Where IDENTIFIER is the name of the identifier and INT is a valid float expression, internally truncated to an integer, and used to specify the size of the array.

Note: In previous versions IDENTIFIER names were limited to 40 characters. There has been a Change removing that restriction.

See Array Initializers for more about the optional ARRAY_INITIALIZER parameter.

Consider the following example of a one-dimensional, uninitialized array:

#declare MyArray = array[10]

It declares an uninitialized array of ten elements. The elements are referenced as MyArray[0] through MyArray[9]. As yet, the type of the elements are undetermined. Once you have initialized any element of the array, all other elements can only be defined as that type. Any attempt to reference an uninitialized element results in an error. More below:

#declare MyArray = array[10]
#declare MyArray[5] = pigment{White}     //all other elements must 
                                         //be pigments too.
#declare MyArray[2] = normal{bumps 0.2}  //generates an error
#declare Thing = MyArray[4]              //error: uninitialized array element

Multi-dimensional arrays up to five dimensions may be declared. This example ...

#declare MyGrid = array[4][5]

... declares a 20 element array of 4 rows and 5 columns. Elements are referenced from MyGrid[0][0] to MyGrid[3][4]. Although it is permissible to reference an entire array as a whole, you may not reference just one dimension of a multi-dimensional array.

#declare MyArray = array[10]
#declare MyGrid = array[4][5]
#declare YourArray = MyArray  //this is ok
#declare YourGrid = MyGrid    //so is this
#declare OneRow  = MyGrid[2]  //this is illegal

The #ifdef and #ifndef directives can be used to check whether a specific element of an array has been declared. See also: dimensions and dimension_size for additional information about the methods used to determine the size of arrays.

Large uninitialized arrays do not take much memory. Internally they are arrays of pointers so they probably use just 8 bytes per element. Once initialized with values, they consume memory depending on what they contain.

The rules for local vs global arrays are the same as any other identifier.

Note: This applies to the entire array. You cannot mix local and global elements in the same array. See #declare vs. #local for information on identifier scope.

Any legitimate use of the #declare directive can also be put into an array. In other words, you can also create multidimensional arrays by making an array of arrays.

Additional points to consider are as follows:

  1. Array elements will no longer have to be all of the same type. Caveats listed below:
    1. Mixing elements of different types will increase memory consumption
    2. The increased memory footprint will not revert even if the array is later set to elements all of the same type
  2. An array can be declared without specifying any dimensions; in this case the array will be one-dimensional and be able to grow in size dynamically
  3. Accessing an element beyond the nominal size of such an array will automatically increase the nominal size just enough to include that element. Caveats listed below:
    1. The memory footprint may be twice as high than required for the current nominal size.
    2. Growth of such an array is triggered by any access to an element beyond the nominal size
    3. This includes tests such as #ifdef(ARRAY[INDEX])
  4. When using square bracket notation, the keys do not necessarily have to be string literals, but can be arbitrary string expressions
  5. When using dot notation, the indices must follow the generic rules for identifiers
  6. When using square bracket notation, the keys do not necessarily have to be string literals, but can be arbitrary string expressions

Additional usage examples are as follows:

// create an empty dictionary
#declare Fnord = dictionary;

// create a dictionary with elements
#declare Fnord = dictionary {
  ["Foo"]: 42,
  ["Bar"]: sphere { <0,0,0>, 1 }
}

// alternative
#declare Fnord = dictionary {
  .Foo: 42,
  .Bar: sphere { <0,0,0>, 1 }
}

// access a dictionary element
#declare Fnord["Foo"] = 42;
#declare Answer = Fnord["Foo"];

// alternative
#declare Fnord.Foo = 42;
#declare Answer = Fnord.Foo;

// test whether a dictionary contains a particular key
#ifdef (Fnord["Foo"]) ... #end
#declare FooKeyExists = defined(Fnord.Foo);

// remove a key from a dictionary
#undef Fnord["Foo"];

Array Initializers

Because it can be cumbersome to individually initialize the elements of an array, you may initialize it as it is created using array initializer syntax.

#include "colors.inc"
#declare FlagColors = array[3] {Red,White,Blue}

Multi-dimensional arrays may also be initialized this way.

#declare Digits =
array[4][10] {
  {7,6,7,0,2,1,6,5,5,0},
  {1,2,3,4,5,6,7,8,9,0},
  {0,9,8,7,6,5,4,3,2,1},
  {1,1,2,2,3,3,4,4,5,5}
  }

The commas are required between elements and between dimensions as shown in the example.