Thinking about some RPG..Android version.

Started by EgonOlsen, December 17, 2011, 11:42:01 PM

Previous topic - Next topic

fireside

click here->Fireside 7 Games<-

EgonOlsen

Hurray! You can now complete your first quest...which is: Talk to a character about his teddy bear, go to a chest and grab the teddy bear, give it to him and get a ring in return. Doesn't sound much, but it's something to build upon.

fireside

Yes, those are the basic blocks of most interactions.  Glad you are still making progress.   
click here->Fireside 7 Games<-

EgonOlsen

Quote from: fireside on April 17, 2013, 06:54:12 AM
Glad you are still making progress.
It's hard sometimes to motivate yourself to do this kind of grunt work, but i'm doing my best. Today, i've changed the book from using static text to show the actual quest log. The screen shot has been taken on my new Nexus 4 btw., so even if it doesn't show anything really new, i'll post it anyway... ;)


raft

#364
looks cool:) how do you do that? by rendering text to a texture?

note: once again forum did not notify me by email. happens seldom but sometimes

EgonOlsen

Quote from: raft on April 25, 2013, 03:04:37 AM
looks cool:) how do you do that? by rendering text to a texture?
Yes, i'm using a modified version of your text rendering classes to render into four different textures (to cover all visible pages). I had to modifiy the classes slightly to tweak the text scaling. Blitting and render to texture doesn't work too well together otherwise.

Quote from: raft on April 25, 2013, 03:04:37 AM
note: once again forum did not notify me by email. happens seldom but sometimes
No idea. I don't have access to any logs of that kind.

fireside

It's really getting a polished look to it.  Nice job.
click here->Fireside 7 Games<-

Thomas.

How is Adreno 320 fast and accurate in your game? How does this compare with your other devices?

EgonOlsen

Quote from: Thomas. on May 04, 2013, 12:28:54 AM
How is Adreno 320 fast and accurate in your game? How does this compare with your other devices?
It's very accurate when it comes to rendering the textures. In fact, it's the only platform where my terrain splatting looks as it looks on the desktop. The 16bit zbuffer sucks though. You have to request at least 24bit of zbuffer depth, or it will flicker in the distance. Performance is fine, but nothing to write home about. The Galaxy Note (same resolution, lower clock speed) can render the game faster.

Thomas.

How is possible, that in probably every graphics benchmark is Adreno 320 faster than Mali-400?

GLBenchamrk
3D mark

EgonOlsen

Yes, i know, but that's how it is. Different apps have different demands, i guess. Judging from some quick tests, it seems to me that it suffers from state changes and multiple draw calls more than other chips. And because i have hundreds of draw calls per frame...well...

Thomas.

And the catacombs? There is much lower number of draw calls...

EgonOlsen

They are on par with the Note, maybe a little faster. Don't underestimate the number of draw calls to render them...nothing in this game except for the terrain is solid geometry in a way that you would create it with some 3d editor. Everything is created at runtime out of simple beans that describe the position, orientation and attributes of an entity and then some view will be assigned, if that entity is visible. For the dungeon, each tile is a separate entity and requires up to 5 draw calls (torches and doors left aside).

Thomas.

Are you using tangent or object space normal mapping?

EgonOlsen