Page 1 of 2 12 LastLast
Results 1 to 10 of 17

Thread: Castle Game Engine on Android and iOS, and "Darkest Before the Dawn" game release

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    hi
    this is really good news , +1 for supporting such platforms
    i downloaded the game and it works perfectly in windows , but android i got nothing only black screen (samsung galaxy s advance) .
    am not sure but i think it is because opengles , i have installed an opengl application called (opengl 3D Showcase) , this app extract opengl informations such as
    GL_VERSION : OpenGL ES-CM 1.1 , GET_GLES_VERSION:2.0 , now i don't fully understand what's the difference between these 2 informations!.

    keep developing this great engine

  2. #2
    Quote Originally Posted by AirPas View Post
    GL_VERSION : OpenGL ES-CM 1.1 , GET_GLES_VERSION:2.0
    It looks like you have both 1.1 and 2.0 OpenGLES version, which is a common situation for Android >= 2.3. The engine uses only OpenGLES 2.0. If you would not have OpenGL ES 2.0, Google Play would not even let you install the app on the device, so you're fine in that regard

    As for the black screen, I already have 2 other bugreports about it. It looks like NativeActitivity fails on some Samsung devices... We're investigating a fix

    Thanks for the good words!

  3. #3
    remark ,i think its the only (disadvantage) for this engine
    the engine seems large in size , empty window = 4Mb ! , i think its too much , since some people inculding me having allergy against the app size.

  4. #4
    Great news michalis and great work... συγχαρητήρια...

    My small suggestion is to add/hire a graphic designer and a wed designer to give a large push to your work...
    This is my problem too ....

    Keep programming...

  5. #5
    Quote Originally Posted by AirPas View Post
    remark ,i think its the only (disadvantage) for this engine
    the engine seems large in size , empty window = 4Mb ! , i think its too much , since some people inculding me having allergy against the app size.
    but how many people won't play a game because of that?

  6. #6
    PGDCE Developer de_jean_7777's Avatar
    Join Date
    Nov 2006
    Location
    Bosnia and Herzegovina (Herzegovina)
    Posts
    287
    I don't think a large size for an engine is that much of a problem, if the engine has a lot to give. And that might be possible to trim down even more (using strip I suppose).

    The problem I found with the game on my phone (Nexus S with CyanogenMod 10.2), is that I can't look and move at the same time. Like it does not support multi-touch, or simply is not intended to work that way. I don't have this problem with other games. Also, it ran only with the fastest setting, but the phone is limited I suppose with the amount of stuff I got installed.
    Existence is pain

  7. #7
    Code:
    but how many people won't play a game because of that?
    i was talking from the programmer's perspective and not from the user , some users don't even know where is the exe

    in the end its just an opinion , i remember Tomb Raider Anniversary exe was 4Mb

  8. #8
    Quote Originally Posted by AirPas View Post
    in the end its just an opinion , i remember Tomb Raider Anniversary exe was 4Mb
    If my memory serves me correctly Tomb Raider Anniversary also had a bunch of dll's in its folder. So don't you think it is posible that one of them actually contained graphical engine?
    You see the size of the exe itself can't be used to tell the size of an app. You need to check the size of all binary files which include (graphical engine, sound engine, network engine, etc.).

    Do you know that empty LCL based Application build with Lazarus using default settings already use 4,2 MB of memory and that the exe is 14.1 MB in size?

  9. #9
    Quote Originally Posted by de_jean_7777 View Post
    The problem I found with the game on my phone (Nexus S with CyanogenMod 10.2), is that I can't look and move at the same time. Like it does not support multi-touch, or simply is not intended to work that way. I don't have this problem with other games.
    Multi-touch is just not handled yet in the engine SVN. It will be done before release, and then indeed you will be able to look and move at the same time

    Quote Originally Posted by de_jean_7777 View Post
    Also, it ran only with the fastest setting, but the phone is limited I suppose with the amount of stuff I got installed.
    The beautiful/average/fastest options mainly change how much data we load to the GPU. Since GPU memory is quite limited on mobiles (but it also differs wildly between devices), I added this option. If only the fastest works, then probably other versions just don't fit into your GPU memory.

    BTW, I do plan to make this situation handled more gracefully, with some dialog saying "We didn't fit in your GPU, maybe try lower quality", and/or just automatically lowering the quality.

    The amount of stuff you have installed should not matter (although there is also a beta version that allows installing to sdcard on http://michalis.ii.uni.wroc.pl/~mich..._allow_sdcard/ ). Unless you have something GPU heavy running in the background.

  10. #10
    PGDCE Developer de_jean_7777's Avatar
    Join Date
    Nov 2006
    Location
    Bosnia and Herzegovina (Herzegovina)
    Posts
    287
    Quote Originally Posted by michalis View Post
    Multi-touch is just not handled yet in the engine SVN. It will be done before release, and then indeed you will be able to look and move at the same time

    The amount of stuff you have installed should not matter (although there is also a beta version that allows installing to sdcard on http://michalis.ii.uni.wroc.pl/~mich..._allow_sdcard/ ). Unless you have something GPU heavy running in the background.
    Great that you're adding multi-touch support. Nothing GPU intensive running, but there are memory-intensive applications otherwise.
    Existence is pain

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •