Author Topic: Thinking about some RPG..Android version.  (Read 246177 times)

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Thinking about some RPG..Android version.
« Reply #300 on: September 02, 2012, 08:01:51 pm »
Any plans on publishing on Google Play?
Yes, but it's still a long way to go before that. At least some basic game play should be included before i publish something somewhere.

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Thinking about some RPG..Android version.
« Reply #301 on: September 28, 2012, 11:12:07 pm »
I'm working on some simple gui classes ATM, but i've got nothing to show right now. However, i tried if i could use the additional power of the Nexus 7 tablet (compared to my Nexus S phone) to crank up the details a little bit (i.e. add more grass patches). It turned out, that there isn't that much room for improvement... i could increase it a notch or two, but that doesn't really add much to the visuals. On the desktop however, this is possible (so much for mobile devices reaching for the desktop in terms of performance...):


Offline Thomas.

  • double
  • *****
  • Posts: 833
    • View Profile
Re: Thinking about some RPG..Android version.
« Reply #302 on: September 29, 2012, 12:14:20 am »
From my experience rendering grass this way is very slow. In my another game (out of project page) I'm using triangles (and simple shader) for oat and it is very fast. I was inspired by vegetation from FarCry 2... And your game looks very nice with a lot of grass ;)

« Last Edit: September 29, 2012, 12:51:26 am by Thomas. »

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Thinking about some RPG..Android version.
« Reply #303 on: September 29, 2012, 12:32:11 pm »
From my experience rendering grass this way is very slow.
Which way do you mean?

Offline Thomas.

  • double
  • *****
  • Posts: 833
    • View Profile
Re: Thinking about some RPG..Android version.
« Reply #304 on: September 29, 2012, 01:26:17 pm »
From your screenshots I would estimate two transparent and billboarded triangles with texture... right? If it is only one triangle, you can try to use two triangles. In particle system was the use of two triangles faster about 10% (maybe because count of rendering pixels was lower)

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Thinking about some RPG..Android version.
« Reply #305 on: September 29, 2012, 04:22:20 pm »
Yes, they are billboarded quads which are dynamically added to the scene based on the camera's position and orientation. The algorithm that cares about this was a brain flash of mine that i stopped understanding right after implementing it... ;)

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Thinking about some RPG..Android version.
« Reply #306 on: October 02, 2012, 11:49:59 pm »
Grunt work, i.e. implementing a basic GUI framework for doing...the GUI...like the inventory and a quest book and whatnot. ATM, it can render basic elements like windows, labels, buttons, images, group them, define drag-and-drop sources and targets and scale the GUI. This is the test case on the desktop resembling a basic inventory screen, where you can move items around and stack them:


Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Thinking about some RPG..Android version.
« Reply #307 on: October 07, 2012, 11:27:08 pm »
More grunt work on the GUI...i really hate making GUIs and/or GUI frameworks. I somehow always feel dirty afterwards...anyway, it now has the inventory, a quickslot bar (right to the inventory), the player's silhouette to equip items and a text area with item descriptions. Draging, stacking and splitting seems to work fine now between all components, but the code that handles this looks like s**t... ;)

Anyway...



Edit: Nothing in this prototype is final btw...it's just a kind of reusable test case (which means that most of the stuff should be usable in the actual game).
« Last Edit: October 07, 2012, 11:44:50 pm by EgonOlsen »

Offline fireside

  • double
  • *****
  • Posts: 607
    • View Profile
Re: Thinking about some RPG..Android version.
« Reply #308 on: October 09, 2012, 07:44:17 pm »
Nice GUI.  I'm replaying Betrayal at Krondor, which I really love.  They kept it simple by not letting the player carry too many items.  I feel the same about GUI.  I don't like working on it, but it is really important to the game.   An overly complex GUI makes the game drag. 
click here->Fireside 7 Games<-

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Thinking about some RPG..Android version.
« Reply #309 on: October 09, 2012, 11:33:37 pm »
...plus it has to be usable and readable on a smartphone display. What i currently have seems to work fine on the desktop but i'm not so sure if it will do the same on the phone. I added tabs on top of the inventory section and did a rescaled mock-up to see the actual size on the phone...it didn't look too promising... :(

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Thinking about some RPG..Android version.
« Reply #310 on: October 11, 2012, 08:36:38 pm »
Tabs and more items to test with and such...


Offline Thomas.

  • double
  • *****
  • Posts: 833
    • View Profile
Re: Thinking about some RPG..Android version.
« Reply #311 on: October 11, 2012, 10:34:17 pm »
Nice work ;) are you using different images for different screen resolution?

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Thinking about some RPG..Android version.
« Reply #312 on: October 11, 2012, 10:57:51 pm »
No. The gui scales with the screen height and that includes the images for the items. At 800*480, they are already scaled up a little as each item is 32*32 pixels in size and covers a ~50*50 rectangle on screen.

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Thinking about some RPG..Android version.
« Reply #313 on: October 13, 2012, 12:15:35 am »
Tried the GUI on the actual Android device...apart from some bugs in the scaling code, it worked fine but it was unusable, at least on the phone (it worked ok on the tablet). Tabs were to small, font was too small and dragging required some luck...so i reworked it by enlarging the tabs and the font and making the items larger while dragging...works much better now, but still not perfect.

Anyway...



Offline fireside

  • double
  • *****
  • Posts: 607
    • View Profile
Re: Thinking about some RPG..Android version.
« Reply #314 on: October 13, 2012, 01:12:32 pm »
I think it looks better with the redesign.  Making the items larger during drag was a good idea.
click here->Fireside 7 Games<-