Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Visualisation Software - R4

  • 08-04-2004 8:55pm
    #1
    Registered Users, Registered Users 2 Posts: 1,464 ✭✭✭


    I thought I'd share this with all you boarders :) and before anyone accuses me of anything, I don't have anything to do with this program other than I use it.

    This is way better than AVS or Geiss or any of the others.
    I've been using it for about a month and development is flying along. V1.06 was only released this evening.

    Download it at http://r4.rabidhamster.org


Comments

  • Moderators, Music Moderators Posts: 23,363 Mod ✭✭✭✭feylya


    Just downloaded it and it's already annoying me. You can't exit from it until it's finished loading :mad:


  • Registered Users, Registered Users 2 Posts: 1,464 ✭✭✭daveyjoe


    Originally posted by feylya
    Just downloaded it and it's already annoying me. You can't exit from it until it's finished loading :mad:
    yeah, but it takes less than 10 seconds to load (for me anyway).


  • Moderators, Music Moderators Posts: 23,363 Mod ✭✭✭✭feylya


    Takes about a minute for me on a P4 3.15ghz


  • Registered Users, Registered Users 2 Posts: 1,464 ✭✭✭daveyjoe


    ?? I'm on a AthlonXP 2400+, and I just timed it at 14 seconds.


  • Moderators, Music Moderators Posts: 23,363 Mod ✭✭✭✭feylya


    Meh, I'll have a poke at it tomorrow.


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 1,464 ✭✭✭daveyjoe


    Okey Dokey, by the way if you know a bit of programming, this thing can be very customisable, absoloutely everything can be changed.


  • Moderators, Music Moderators Posts: 23,363 Mod ✭✭✭✭feylya


    Hmm, in a house with 3 BSC in Software Dev so I'll get something sorted :)


  • Registered Users, Registered Users 2 Posts: 1,464 ✭✭✭daveyjoe


    Originally posted by feylya
    Hmm, in a house with 3 BSC in Software Dev so I'll get something sorted :)
    heh, let me know how you get on

    I made this one myself, it blocks out that annoying scrolling message

    [PHP]
    OVERLAY (
    "name" = "Overlay Scroll Blocker";
    "author" = "Dave";
    GL gl(scenefrom);
    )

    void init() {
    strcpy(gl.shader,"BAa;");
    }

    void reset() {
    }

    void render() {
    gl.clear();
    gl.aspect=0;
    gl.gltranslate(0,0,-2.414);
    gl.glbegin(gl_quads);

    // bottom
    gl.glcolor(255,255,255,0);
    gl.glvertex(-1,-2,0);
    gl.glvertex(1,-2,0);
    gl.glcolor(255,255,255,1);
    gl.glvertex(1,-0.9,0);
    gl.glvertex(-1,-0.9,0);

    // top
    gl.glcolor(255,255,255,0);
    gl.glvertex(-1,2,0);
    gl.glvertex(1,2,0);
    gl.glcolor(255,255,255,1);
    gl.glvertex(1,0.9,0);
    gl.glvertex(-1,0.9,0);

    // left
    gl.glcolor(255,255,255,0);
    gl.glvertex(-0.9,-1,0);
    gl.glvertex(-0.9,1,0);
    gl.glcolor(255,255,255,1);
    gl.glvertex(-1,1,0);
    gl.glvertex(-1,-1,0);

    // right
    gl.glcolor(255,255,255,0);
    gl.glvertex(0.9,-1,0);
    gl.glvertex(0.9,1,0);
    gl.glcolor(255,255,255,1);
    gl.glvertex(1,1,0);
    gl.glvertex(1,-1,0);

    gl.glend();
    }[/PHP]


Advertisement