Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Eclipse Rewrite


krankzinnig
 Share

Recommended Posts

I decided it would be a simple task for my team, this is what I got so far today. Its 100% crossplatform and supports png/ttf and many more formats. Its coded in C++ and uses OpenGL. Any suggestions?

![](http://localhostr.com/file/g8KK97I/Novus%20Screenshot.png)
Link to comment
Share on other sites

It is all completely editable out side of the source code, here is what I have so far for the config files:

```
# Menu UI Configuration File

ui:
{
    image:
    {
path:
{
    backgroundfilename = "data/ui/background.png";
};

        position:
        {
    backgroundx = 0;
    backgroundy = 0;
        };
    };

    font:
    {
path:
{
    textfontfilename = "data/fonts/MavenPro-Medium.ttf";
    titlefontfilename = "data/fonts/MavenPro-Black.ttf";
    headingfontfilename = "data/fonts/MavenPro-Bold.ttf";
    smallfontfilename = "data/fonts/MavenPro-Regular.ttf";
};

        property:
        {
            textsize = 9;
            titlesize = 36;
            headingsize = 10;
            smallsize = 7;
        };

        text:
        {
            subtitle = "An Online 2D Adventure Role Playing Game";
    loginheader = "Login to Adventure Game"
        };

        position:
        {
            dialogx = 125;
            dialogy = 150;
            dialogw = 400;
            dialogh = 150;

            titlex = 130;
    titley = 400;

    subtitlex = 200;
    subtitley = 380;

    legalx = 3;
    legaly = 3;

    statusx = 3;
    statusy = 468;

    statusindicatorx = 80;
    statusindicatory = 468;

    loginheaderx = 128;
    loginheadery = 317;
        };
};

```
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...