Mah Grass Tile
Moderator: PC Supremacists
- davidthefat
- Chaos Rift Maniac
- Posts: 529
- Joined: Mon Nov 10, 2008 3:51 pm
- Current Project: Fully Autonomous Robot
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: California
- Contact:
Mah Grass Tile
All 64x64 tiles
and my beldum, took an hour or 2 to make, IMHO the front and backside is messed up
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Mah Grass Tile
The grass doesn't tile well vertically, but it's nice! Beldum is cool.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- davidthefat
- Chaos Rift Maniac
- Posts: 529
- Joined: Mon Nov 10, 2008 3:51 pm
- Current Project: Fully Autonomous Robot
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: California
- Contact:
Re: Mah Grass Tile
How should I handle landscapes like Trees and Rocks? Draw directly onto the tiles or make a different tile set just for objects like trees and stuff and just have a separate file that stores their location. If I do separate file, then I would be loading lots of blank spaces, and wont that use more memory then one directly drawn onto the tiles? It would use less ram, but it would use more HD memory. Gah this is frustrating
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Mah Grass Tile
You'd actually be using much less space. Think about it. If you store the tree separately you can draw it on top of ANY terrain tile, whereas if you don't you would have to have two copies of every type of terrain tile, one with the tree and one without. If you have more objects than just a tree the number of tiles you need to draw grows exponentially. Storing the tree in it's own tile (probably with a transparency color since most trees aren't perfectly rectangular) allows you to render it wherever you want without having to draw a new tile.davidthefat wrote:How should I handle landscapes like Trees and Rocks? Draw directly onto the tiles or make a different tile set just for objects like trees and stuff and just have a separate file that stores their location. If I do separate file, then I would be loading lots of blank spaces, and wont that use more memory then one directly drawn onto the tiles? It would use less ram, but it would use more HD memory. Gah this is frustrating
As for loading blank spaces I'm not sure what you mean.. you wouldn't load anything at all if the map said that square was blank.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- davidthefat
- Chaos Rift Maniac
- Posts: 529
- Joined: Mon Nov 10, 2008 3:51 pm
- Current Project: Fully Autonomous Robot
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: California
- Contact:
Re: Mah Grass Tile
Looks fine to me, just a bit of lines formed
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Mah Grass Tile
Not bad for a first try.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- short
- ES Beta Backer
- Posts: 548
- Joined: Thu Apr 30, 2009 2:22 am
- Current Project: c++, c
- Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
- Programming Language of Choice: c, c++
- Location: Oregon, US
Re: Mah Grass Tile
I concur, nice job. Don't give updandymcgee wrote:Not bad for a first try.
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
link: https://github.com/bjadamson
- davidthefat
- Chaos Rift Maniac
- Posts: 529
- Joined: Mon Nov 10, 2008 3:51 pm
- Current Project: Fully Autonomous Robot
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: California
- Contact:
Re: Mah Grass Tile
Ok I made the 3d Model of beldum based on my sprites... Hard work... My first 3d model too :D It was a pretty big step forward for me... Only took like 3 hours...
I used blender to render this, and I exported it to 3ds
I think I will fix up the head/eye to have irregularities
I used blender to render this, and I exported it to 3ds
I think I will fix up the head/eye to have irregularities
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Mah Grass Tile
Haha, sweet!
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- davidthefat
- Chaos Rift Maniac
- Posts: 529
- Joined: Mon Nov 10, 2008 3:51 pm
- Current Project: Fully Autonomous Robot
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: California
- Contact:
Re: Mah Grass Tile
Lunatone, IDK Just doesnt LOOK right....
- dandymcgee
- ES Beta Backer
- Posts: 4709
- Joined: Tue Apr 29, 2008 3:24 pm
- Current Project: https://github.com/dbechrd/RicoTech
- Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
- Programming Language of Choice: C
- Location: San Francisco
- Contact:
Re: Mah Grass Tile
Needs color. :Pdavidthefat wrote:Lunatone, IDK Just doesnt LOOK right....
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- Lord Pingas
- Chaos Rift Regular
- Posts: 178
- Joined: Thu Dec 31, 2009 9:33 am
- Favorite Gaming Platforms: NES, SNES, Nintendo 64, Dreamcast, Wii
- Programming Language of Choice: C++
- Location: Hiding In My Mum's Basement With My Pokemon Cards
Re: Mah Grass Tile
Needs more polygons.dandymcgee wrote:Needs color. :Pdavidthefat wrote:Lunatone, IDK Just doesnt LOOK right....
- Bakkon
- Chaos Rift Junior
- Posts: 384
- Joined: Wed May 20, 2009 2:38 pm
- Programming Language of Choice: C++
- Location: Indiana
Re: Mah Grass Tile
Needs to be thicker and the eye indented inwards. Lunatone is a fat bastard.
- short
- ES Beta Backer
- Posts: 548
- Joined: Thu Apr 30, 2009 2:22 am
- Current Project: c++, c
- Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
- Programming Language of Choice: c, c++
- Location: Oregon, US
Re: Mah Grass Tile
who the hell is lunatone?
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
link: https://github.com/bjadamson
- Lord Pingas
- Chaos Rift Regular
- Posts: 178
- Joined: Thu Dec 31, 2009 9:33 am
- Favorite Gaming Platforms: NES, SNES, Nintendo 64, Dreamcast, Wii
- Programming Language of Choice: C++
- Location: Hiding In My Mum's Basement With My Pokemon Cards
Re: Mah Grass Tile
It's a pokeyman!short wrote:who the hell is lunatone?
GET YOUR POKEYMANS RIGHT!