Re: Special Case: Creating a variable in a function?
On Apr 16, 9:23 pm, Justcallmedr...@yahoo.com wrote:
On Apr 16, 8:08 pm, Ian Collins <ian-n...@hotmail.com> wrote:
Justcallmedr...@yahoo.com wrote:
How would you declare and assign a variable inside a function THAT HAS
THE NAME OF A PARAMETER YOU PASSED
Please don't shout!
Sorry :D
example:
when you call createvariable("myvariable")
it will declare the variable "myvariable"
and then maybe assign it something.
myvariable = "this is a real variable"
You can't. What problem are you trying to solve?
I'm trying to create a game engine and one of the functions i'm trying
to create involve loading a mesh and then having the materials for it
end up in an array.
void create_mesh(LPCWSTR path, char array arraynew) // just... kind of
ignore that second parameter.
{
// complicated stuff here to make arraynew work
LPD3DXBUFFER bufNew;
D3DXLoadMeshFromX (path, // load this file
D3DXMESH_SYSTEMMEM, // load the mesh into
system memory
d3ddev, // the Direct3D Device
NULL, // we aren't using adjacency
&bufNew, // put the materials here
NULL, // we aren't using effect instances
&numMaterials, // the number of materials in
this model
&meshSpaceship); // put the mesh here
// retrieve the pointer to the buffer containing the material
information
D3DXMATERIAL* tempMaterials = (D3DXMATERIAL*)bufNew-
GetBufferPointer();
// create a new material buffer for each material in the mesh
material = new D3DMATERIAL9[numMaterials];
for(DWORD i = 0; i < numMaterials; i++) // for each material...
{
arraynew[i] = tempMaterials[i].MatD3D; // get the material
info
arraynew[i].Ambient = material[i].Diffuse; // make ambient
the same as diffuse
}
return;
so far the path parameter works. you can put any character string that
is a filename into it. ex: "mymeshfile.x"
i want to do the same sort of thing for creating an array.
*I want to be able to call the function as many times i want to
without having to also put a declaration for each array at the top.
*basically i want a stand-alone function.
Then you might consider explaining a fairly simple question without
throwing in 30 lines of irrelevent code.
Your question is quite difficult to answer because we don't know if
the array to be used is static.
Can you declare a local variable or container and use it outside the
function?
no
Why? cause it ceases to exist once the function terminates (unless its
static)
Can you allocate a variable or container on the heap and return a
pointer to it?
yes, but you are responsible for its deallocation and it severely
complicates code
Can you declare an array and pass it by reference for a function to
access and modify (not modifying just a copy)?
yes
#include <iostream>
template< typename N, const size_t Size >
void initialize(N (& r)[Size]) // pass array by reference
{
for( size_t t = 0; t < Size; ++t)
{
r[t] = t;
}
}
template< typename N, const size_t Size >
void display(const N (& r)[Size])
{
std::cout << "array size = " << Size;
for( size_t t = 0; t < Size; ++t)
{
std::cout << "\nr[" << t;
std::cout << "] = " << r[t];
}
std::cout << std::endl;
}
int main()
{
int array[8];
initialize(array);
// do work with array
display(array);
}
/*
array size = 8
r[0] = 0
r[1] = 1
r[2] = 2
r[3] = 3
r[4] = 4
r[5] = 5
r[6] = 6
r[7] = 7
*/
___
There has to be an easier way to do this?
yes there is - stop using primitive containers
#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
template< typename T >
void initialize(std::vector< T >& r_v)
{
// std::generate is a better option
for(size_t t = 0; t < r_v.size(); ++t)
{
r_v[t] = t;
}
}
template< typename T >
std::ostream&
operator<<(std::ostream& os, const std::vector< T >& r_v)
{
std::copy( r_v.begin(),
r_v.end(),
std::ostream_iterator< T >(os, "\n") );
return os;
}
int main()
{
std::vector< int > vn(8);
initialize(vn);
std::cout << vn;
}
/*
0
1
2
3
4
5
6
7
*/