Join! (free)   |  FAQ  |  Search  |  Memberlist  |  Usergroups  |  Log in 

Reply to topic
 The Last Stand 
Bravo
Site Admin
Site Admin

Joined: 11 Jun 2006
Posts: 3385

Reply with quote
Gimme a model to make.

What format?
Size? (A scale file would be great)
Texture size?
Poly limit?



_________________
Accountant in Teesside
View user's profile Send private message Send e-mail
  
DSi
Moderator
Moderator

Joined: 28 Mar 2007
Posts: 894

Location: New York, USA
Reply with quote
I don't know anything about the models for the game, Alz should be able to tell you though.

_________________
View user's profile Send private message Visit poster's website
  
Alz
Artist
Artist

Joined: 16 Jan 2007
Posts: 258

Reply with quote
Well, i dont really know what models we want to put into the game, we have some pictures, somewere, ill look for them and edit this post.
EDIT: I can only find a pic of a gun, if you want something better to do, you can do a model for The Last Hope. Here.

Format: w3d/3ds
Size: Uhh... Well, Soldat isnt here atm, he knows all the sizes and stuff lol.
Texture size: Kinda small. Don't know exact size yet.
Poly limit: Don't really know lol.

_________________
View user's profile Send private message
  
Bravo
Site Admin
Site Admin

Joined: 11 Jun 2006
Posts: 3385

Reply with quote
Tell you what....

If you make a game for me to my specifications, I will do the whole shebang artwork for it for you...

It would be a WWII based strategy game with some elements of 3D battle scenes (optional). It would be a great seller, especially if you are able to program the online aspect that I would like to see.

I used to work for a software house, so know what is needed on a developmental basis...ie I have both eyes open.

Interested?

_________________
Accountant in Teesside
View user's profile Send private message Send e-mail
  
Alz
Artist
Artist

Joined: 16 Jan 2007
Posts: 258

Reply with quote
Yeah, ok.

_________________
View user's profile Send private message
  
Bravo
Site Admin
Site Admin

Joined: 11 Jun 2006
Posts: 3385

Reply with quote
what language do you code in?

_________________
Accountant in Teesside
View user's profile Send private message Send e-mail
  
Alz
Artist
Artist

Joined: 16 Jan 2007
Posts: 258

Reply with quote
C++

_________________
View user's profile Send private message
  
Bravo
Site Admin
Site Admin

Joined: 11 Jun 2006
Posts: 3385

Reply with quote
ok, what I will do is set up a forum for it.

I will start work modelling (a lot of models are gonna be needed).

I will also start work on a list of what models are needed in case other modellers want to join in.

I will also work out some of the maths/logic involved.

It's beena while since I was a programmer, is it still easy enough to have 3 dimensional arrays? Can those arrays contain anything? (ie numerical AND text)

_________________
Accountant in Teesside
View user's profile Send private message Send e-mail
  
Alz
Artist
Artist

Joined: 16 Jan 2007
Posts: 258

Reply with quote
I dont know, its been some years since i was using C++ too, im just looking on some tutorials to jog my memory lol.

_________________
View user's profile Send private message
  
Bravo
Site Admin
Site Admin

Joined: 11 Jun 2006
Posts: 3385

Reply with quote
Well I never really learned C++, I used to program in Z80 (told you it was a long time)

_________________
Accountant in Teesside
View user's profile Send private message Send e-mail
  
yvo
Site Admin
Site Admin

Joined: 31 Jul 2006
Posts: 949

Reply with quote
Bravo wrote:
It's beena while since I was a programmer, is it still easy enough to have 3 dimensional arrays? Can those arrays contain anything? (ie numerical AND text)


Arrays in C++ can even contain objects. (C++ being an Object Oriented Programming language.)

I did a course in advanced programming in C++ at my university. I love the language. Was very very cool to learn.

The cool thing is that my webdesigning program Flash has a programming language called actionscript as some might know. Since version 2.0 it has gone object oriented too. It's the standard nowadays.

_________________


View user's profile Send private message
  
Bravo
Site Admin
Site Admin

Joined: 11 Jun 2006
Posts: 3385

Reply with quote
when you say 'object' do you mean a 3d object?

_________________
Accountant in Teesside
View user's profile Send private message Send e-mail
  
WeeBull
Artist
Artist

Joined: 12 Jun 2006
Posts: 316

Location: The Netherlands
Reply with quote
Why don't we all join this project and make it the 'CG Arts Secret Project' and everyone can add ideas and stuff to it.
We've got some very talented people here, everyone can learn from another.

_________________

Map-Craft.com
View user's profile Send private message Visit poster's website AIM Address MSN Messenger
  
DSi
Moderator
Moderator

Joined: 28 Mar 2007
Posts: 894

Location: New York, USA
Reply with quote
I think that's a great idea! I'd be up for that!

_________________
View user's profile Send private message Visit poster's website
  
Bravo
Site Admin
Site Admin

Joined: 11 Jun 2006
Posts: 3385

Reply with quote
I wasn't gonna post this up until I had got it ready...

http://wwii.myfreeforum.org

I made a forum for it lol

_________________
Accountant in Teesside
View user's profile Send private message Send e-mail
  
yvo
Site Admin
Site Admin

Joined: 31 Jul 2006
Posts: 949

Reply with quote
Bravo wrote:
when you say 'object' do you mean a 3d object?


No mate. Best way to explain it with an example that is common to 3D gaming:
Let's say you wanna keep track of an person's position in a 3D space. This person will have 3 coordinates: x, y and z. You could program an object with these properties. Let's say I cal this object pos:

Object pos
- Property x
- Property y
- Property z

Now you make instances of that object at certain moments. I could make snapshots of that persons position every 5 seconds. Naming those positions: pos1, pos2, pos3, pos4, etc etc

So if I wanna go back in time and wanna know what that person position was after 50 seconds, I can take object pos10 and read the coordinates from that object.
If I want I can put those objects po1, pos2, pos3, etc in an array. Of course I can make a multidimensional array and just put the coordinates in there, but if I put objects in that array it will be a normal 1 dimensional array. Far easier.

You could also make an object car and give it properties like:
brand
type
engine power
colour
transmission
max speed
etc

The advantage you have with object oriented programming, is that your code is more compact, because you put everything in objects and just read the methods and properties from those objects when you need them.

I hope I explained that well enough.

_________________


View user's profile Send private message
  
DSi
Moderator
Moderator

Joined: 28 Mar 2007
Posts: 894

Location: New York, USA
Reply with quote
Bravo wrote:
I wasn't gonna post this up until I had got it ready...

http://wwii.myfreeforum.org

I made a forum for it lol

Lol nice it looks good Wink.

_________________
View user's profile Send private message Visit poster's website
  
Alz
Artist
Artist

Joined: 16 Jan 2007
Posts: 258

Reply with quote
Yeah, looks nice

_________________
View user's profile Send private message
  
Bravo
Site Admin
Site Admin

Joined: 11 Jun 2006
Posts: 3385

Reply with quote
ah an object is what in BASIC would be called an array....

DIM pos (10,10,10)

This would give 'pos' a 3 dimensional (or x, y and z) value, and 10 of each. For the time, you could add a 4th dimension...

DIM pos (1000,3)

1000 down, 3 across

So your 1000 could be frames, and your 3 other values are your x,y and z.

_________________
Accountant in Teesside
View user's profile Send private message Send e-mail
  
yvo
Site Admin
Site Admin

Joined: 31 Jul 2006
Posts: 949

Reply with quote
No not really, cause an object can contain multiple arrays. Very Happy

An object is something that contains methods(functions) and properties.



_________________


View user's profile Send private message
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT  
Page 1 of 1  

  
  
 Reply to topic  
Create your own free forum | Buy a domain to use with your forum