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

Thread: Phoenix 2.0 Preview version

  1. #1

    Phoenix 2.0 Preview version

    Hello everyone.

    As some of you have been aware i've worked silently on Phoenix since the last release. Researching alot on methods to make API independent renderer and other designs.

    Now i feel i have the groundwork made of what will become the next version. The tight coupling to OpenGL is gone, a Direct3D renderer will be written in the future (I'm currently concentrating on getting the OpenGL one rock solid as well as adding more features).

    All rendering is done via a common interface, and using vertex buffers, this will make the renderer interfaces alot easier (and hopefully encounter less driver hazzels as the older versions) and faster.

    Currently its only tested on Turbo Delphi for Win32 but FreePascal and Delphi 7 support will come if it doesnt work as it is.

    There's also a prototype version of the new image editor, basically the same but better interface and, finally with source!

    I'd love any feedback and idea's on what you like and what you don't like.

    http://www.phoenixlib.net/

    (And btw there's some bug with the mouse aiming in the demo if you rotate the tank or world, i havent really gotten around to solving that problem)
    Amnoxx

    Oh, and this code appears to be an approximate replacement for return(random() & 0x01);

    Phoenix Wiki
    http://www.phoenixlib.net/

    Phoenix Forum
    http://www.pascalgamedevelopment.com/viewforum.php?f=71

  2. #2

    Phoenix 2.0 Preview version

    Downloading now to take a look at it. I'll let you know what I think. Might have to use this for the next version of JumpStart if its as good as previous versions

  3. #3

    Phoenix 2.0 Preview version

    Excellent!! I've been looking forward to this news
    I can't wait to see/play with all the new things.

    I saw a couple nice changes to DXinput, great. I also like the new camera system. Personally I dont really see the benefit of an additional Direct3D renderer, though.

    Anyway, one of the things I missed in the previous version is a way to change the screen resolution during the game, so it's possible to create proper setup screens. (maybe its already possible, but I couldnt figure out how)
    Another rather annoying thing I'd like to see fixed is the issue where the mousepointer can be moved outside the screen when in fullscreen mode.

    Keep up the great work!

    [size=9px](ps, wish I could bump to news, but the category prevents me from doing so, I have set it as an announcement though) [/size]

  4. #4

    Phoenix 2.0 Preview version

    great news!

    code made for phoenix1 will work in phoenix2?
    From brazil (:

    Pascal pownz!

  5. #5

    Phoenix 2.0 Preview version

    Quote Originally Posted by jdarling
    Downloading now to take a look at it. I'll let you know what I think. Might have to use this for the next version of JumpStart if its as good as previous versions
    I'ts better But not as feature full, yet.

    Quote Originally Posted by Traveler
    Excellent!! I've been looking forward to this news
    I can't wait to see/play with all the new things.

    I saw a couple nice changes to DXinput, great. I also like the new camera system. Personally I dont really see the benefit of an additional Direct3D renderer, though.

    Anyway, one of the things I missed in the previous version is a way to change the screen resolution during the game, so it's possible to create proper setup screens. (maybe its already possible, but I couldnt figure out how)
    Another rather annoying thing I'd like to see fixed is the issue where the mousepointer can be moved outside the screen when in fullscreen mode.

    Keep up the great work!
    The only thing that is "new" as in not rewritten in this version is the prototype entity engine, it will replace the sprite engine, check the recoil behavior for a small preview of what can be done.

    The idea behind the D3D backend is to be able to support lower-end hardware, escpecially laptops with Intel GPUs and in some respect ATI cards even though they are alot better. It's not a prioritized feature as of now through, the framework is there and it will be able to implement it without changing anything else.

    It was possible in the previous version; you basically had to do:

    Code:
      Screen.Close;
      Screen.Open(new resolution paremeters);
      // rebuild all assets
      Images[0].Build;
    I will add a better variant to change the resolution in this version, as per request =) Rebuilding the assets might be a manual process still, the reason is that it may take forever and you might want to do a progress screen for it, that will be hard if it's automatic.

    I wasn't really aware of this mousepointer problem, i'll look into it, through i'm afraid its something burried in GLFW.

    Quote Originally Posted by arthurprs
    great news!

    code made for phoenix1 will work in phoenix2?
    That depends, the initialization part is very different, you need to create a device, there's no screen class anymore. Othervise alot of stuff is the same, for instance the imagelist has the same functions and names (and a few more), except for the constructor that will need the device as a parameter so anything using the imagelist will work more or less directly.

    And theres no automatic event passing anymore, so getting the input to work requires to manually pass all events to the input class, this is done to be able to fully disable inputs and other components, witch i found to be a limitation before.

    Thanks alot for you'r feedback and positive comments!
    Amnoxx

    Oh, and this code appears to be an approximate replacement for return(random() & 0x01);

    Phoenix Wiki
    http://www.phoenixlib.net/

    Phoenix Forum
    http://www.pascalgamedevelopment.com/viewforum.php?f=71

  6. #6

    Phoenix 2.0 Preview version

    Great news. I was wondering what was going on with Phoenix.
    I''ll definitely take a look at it when I get home.

    Will Phoenix 2.0 contain some new features or is it simply an optimized and better written version of PPhoenix 1.0?
    Imagine I've written something clever here inspiring you to make something awesome. If that happens give me credits

  7. #7

    Phoenix 2.0 Preview version

    Quote Originally Posted by pstudio
    Great news. I was wondering what was going on with Phoenix.
    I''ll definitely take a look at it when I get home.

    Will Phoenix 2.0 contain some new features or is it simply an optimized and better written version of PPhoenix 1.0?
    It will a bit of both, in the first stage I'm converting all old features to use the new internal stuff, after that yes.

    I'd really want to make a new flexible entity/sprite engine, possibly with a external editor to make building levels easier. And with the new collision engine using polygon collisons (SAT) and returning correct collisionpoints and normals.

    Is there anything in particular you'd be interested in?
    Amnoxx

    Oh, and this code appears to be an approximate replacement for return(random() & 0x01);

    Phoenix Wiki
    http://www.phoenixlib.net/

    Phoenix Forum
    http://www.pascalgamedevelopment.com/viewforum.php?f=71

  8. #8

    Phoenix 2.0 Preview version

    Is there anything in particular you'd be interested in?
    Well I see you already got collisionspoint on your own list This was probably the most important thing for me. I missed that in the old engine.

    The posibility to add post-processing effects would also be a nice feature imo.
    Imagine I've written something clever here inspiring you to make something awesome. If that happens give me credits

  9. #9

    Phoenix 2.0 Preview version

    There is a new version of Phoenix over at http://phoenixlib.net/.

    Check the updated image editor, included some exporting and importing functions, the possibility to import images using the packer unit from paul_nicholls.

    Also check out the collision demo, its a bit to complex for my liking but it works like a charm, what is not possible to visually see in the demo is that you get full details on the collision, contact points intersection depth and collision normals! Note that the collision engine uses Swept SAT, wich means that regardless of the object velocity the collision will be detected. (this has taken forever to get working correctly, theres some not so trivial math behind it)

    Any feedback on how to improve and make it easier to use is welcome.

    There's also a few more methods in the image list class, as well as a brand new demo, showing some of the features.

    Included the gui skin component that is used for the gui, quite useless without the gui engine or skin editor, but you have to start somewhere.

    Next theres the particle demo, in a state "working, but not debugged", supporting various billboarding methods, including trailing particles for engine trails etc. Also supports color fading by a custom color list.

    The path engine also makes a return, a basic variant using position and rotation only, any feature suggestions and ideas how to extend it is welcome aswell (color paths for instance).

    I've refactored some of the device classes, it is a bit more streamlined now, resizing the window is supported aswell.

    And finally theres a font demo, showing some basic text formatting functions.


    Quote Originally Posted by pstudio
    Is there anything in particular you'd be interested in?
    Well I see you already got collisionspoint on your own list This was probably the most important thing for me. I missed that in the old engine.

    The posibility to add post-processing effects would also be a nice feature imo.
    About the post processing effects, what do you need? I have planned adding render targets to render the scene to a texture (But probably only using FBOs as a start (Meaning a somewhat modern GPU)

    I'm considering adding shader support, wich makes writing fullscreen effects easy to write, but i dont know if its worth the trouble to implement.
    Amnoxx

    Oh, and this code appears to be an approximate replacement for return(random() & 0x01);

    Phoenix Wiki
    http://www.phoenixlib.net/

    Phoenix Forum
    http://www.pascalgamedevelopment.com/viewforum.php?f=71

  10. #10

    Phoenix 2.0 Preview version

    Quote Originally Posted by pstudio
    Is there anything in particular you'd be interested in?
    Well I see you already got collisionspoint on your own list This was probably the most important thing for me. I missed that in the old engine.

    The posibility to add post-processing effects would also be a nice feature imo.
    Andreaz,
    it's possible to add effects like motion blur, bloom, etc.. ?
    From brazil (:

    Pascal pownz!

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
  •