Page 12 of 19 FirstFirst ... 2 10 11 12 13 14 ... LastLast
Results 111 to 120 of 184

Thread: I bring thee not simple rearrangements, but a whole new world of possibilities,,,

  1. #111
    Senior Member Ryx's Avatar
    Join Date
    Aug 2011
    Posts
    283

    Re: I bring thee not simple rearrangements, but a whole new world of possibilities,,,

    so, it's compatible with the old map format?
    Reply With Quote

  2. #112

    Re: I bring thee not simple rearrangements, but a whole new world of possibilities,,,

    Quote Originally Posted by Ryx View Post
    so, it's compatible with the old map format?
    Nope.
    Reply With Quote

  3. #113

    Re: I bring thee not simple rearrangements, but a whole new world of possibilities,,,

    Ui tag format and renderer is slowly taking shape. Just need to start writing console commands since the buttons on Ui will simply send console commands to change setting, join servers, load maps, send chat messages, and etc.
    Reply With Quote

  4. #114

    Re: I bring thee not simple rearrangements, but a whole new world of possibilities,,,



    Easier to see in HD.

    NEED A DISPENSER HERE
    Reply With Quote

  5. #115
    Senior Member PopeAK49's Avatar
    Join Date
    Oct 2007
    Location
    Alaska
    Posts
    1,772

    Re: I bring thee not simple rearrangements, but a whole new world of possibilities,,,

    Reply With Quote

  6. #116

    Re: I bring thee not simple rearrangements, but a whole new world of possibilities,,,

    Just finished writing a nice fat console and Ui scripting language. The Ui scripting is pretty simple but method based and strong enough to do everything I need. Haven't really documented how it works but an example would be like:

    console(getInput(input console)); clear(input console);
    That line of code would get the input from the console text field and then send it to the games console and then clear the text field.

    goto(2); setInput(input player name, getSetting(userName));
    That line would open the Ui frame 2 and then look up the user name of the player and then set the input field to the players user name.

    console(connect getInput(input ip adress) getInput(input port));
    That line would get the ip adress and port from two text boxes and then connect to a multiplayer server with it.

    There is of course loads more you can do with this, these are just examples. I made a console for the game using the Ui script language. Works quite nicely :P
    Code:
    name=Console
    
    frame 0 closed
    frame 1 open focus(input console); console(log test);
    
    begin input
        input console
        1
        graphics/shader/ui/console/inputBox.shader
        0,0
        1024,13
        left,bottom
        
        console(getInput(input console)); clear(input console);
    end
    Nothing to really show this time since all the work was under the hood stuff. Might have something more visual next time.

    edit-
    Oh and I've linked the main actor structure into the console with Java.reflection. That means you can literally call methods of a specific object in the game through the console.

    I'm going to have it set up so you can be like acc <object id> <method> <param> <param> ...
    So basically you could acc 23 setHealth 100,
    or acc 17 kill
    or acc 45 push 12 15 102
    or acc 3 jump

    And so on. Might make for some interesting custom game types :P
    Last edited by Not Inferno; June 11th, 2013 at 10:00 AM.
    Reply With Quote

  7. #117

    Re: I bring thee not simple rearrangements, but a whole new world of possibilities,,,

    Just stuff.
    NEED A DISPENSER HERE
    Reply With Quote

  8. #118
    +rep to cure coronavirus n00b1n8R's Avatar
    Join Date
    Oct 2006
    Location
    Australia
    Posts
    13,213

    Re: I bring thee not simple rearrangements, but a whole new world of possibilities,,,

    cool transparency on the overlapping bubbles~~
    Reply With Quote

  9. #119

    Re: I bring thee not simple rearrangements, but a whole new world of possibilities,,,

    Quote Originally Posted by n00b1n8R View Post
    cool transparency on the overlapping bubbles~~
    Thanks for pointing out what the video is focused on and what I wrote in the description. Issue is because I need to sort the particles by depth manually because GL doesn't like transparency in the depth buffer. I'm going to have the particle system do that and also merge all the geometry for performance.
    Reply With Quote

  10. #120

    Re: I bring thee not simple rearrangements, but a whole new world of possibilities,,,

    K fixed.

    This video is unable to be displayed because the YouTube video tags were used incorrectly. Please review proper use of the tags here.

    Reply With Quote

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

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
  •