This site has been archived and made available for preservation purposes. No edits can be made.

Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 35

Thread: GUI Debation

  1. #21
    Member
    Join Date
    Jul 2011
    Location
    South East United States
    Posts
    69

    Re: GUI Debation

    I'm really sorry for not posting what work I did do. I got caught up in IRL and some other projects. Now that the other projects are mostly complete, though, I have time again to help Vault-MP. I've gotten a new computer, but have lost my fallout 3 cd :< . If anyone would be polite enough to send me the main .exe, I'll see if i can get any useful things from it. You can expect many things from me coming, as I will be making up for lost time. If it wasn't for Recycler emailing me I wouldn't of ever remembered about Vault-MP. It was pretty lucky that i read some of my spam emails before deleting.

    EDIT: I've emailed Recycler my D3D9 rendering class and GUI that utilizes it. I'll also put it as an attachment here, incase any of you want to look at it. It is very simple to use, and works quite nicely. However, it is missing a scrollable editbox currently. There is a binary that you can run to see what the GUI can look like, and some of its features.
    Attached Files Attached Files

  2. #22
    Administrator
    Join Date
    Jun 2011
    Location
    Germany
    Posts
    1,057
    Blog Entries
    5

    Re: GUI Debation

    No problem at all, it's great that you have found time to work on the GUI now Nice work on the rendering class so far, really looking forward to this

  3. #23

    Re: GUI Debation

    We all are waiting the chat and the GUI, houtin
    Game Developer, Modder & Webmaster.

  4. #24
    Member
    Join Date
    Jul 2011
    Location
    South East United States
    Posts
    69

    Re: GUI Debation

    I've only changed the colors for now. The scrollable textbox is in progress, and may be finished today along with a D3D9 hook.

    Virus scan for CreateDevice.exe https://www.virustotal.com/file-scan/...cc0-1314226543
    Attached Images Attached Images
    Attached Files Attached Files

  5. #25
    Administrator
    Join Date
    Jun 2011
    Location
    Germany
    Posts
    1,057
    Blog Entries
    5

    Re: GUI Debation

    Awesome

  6. #26

    Re: GUI Debation

    Thanks for your job houstin :P
    Game Developer, Modder & Webmaster.

  7. #27

    Re: GUI Debation

    Not bad, Houstin.
    You wanna play - you gonna Pay!

    https://www.youtube.com/watch?v=c_Dzc6G-au8

  8. #28

    Re: GUI Debation

    I'm expecting it to be in the next build then?

  9. #29

    Re: GUI Debation

    Does it use HEX codes for its color? I mean it's too solid can you keep it translucent?

    Around

    0x00000077 - BLACK though can see through it.
    A gaming community ran by one person, with servers made by individuals (in this case, me, myself)
    I plan to look for a trusted person who will help me create a decent roleplay/deathmatch server on Vault-TEC,
    PM me if you're interested

  10. #30
    Member
    Join Date
    Jul 2011
    Location
    South East United States
    Posts
    69

    Re: GUI Debation

    @Lorenc: My rendering class takes D3DCOLOR_ARGB's. They look like 0xAARRGGBB. From dx sdk:

    // D3DCOLOR is equivalent to D3DFMT_A8R8G8B8
    #ifndef D3DCOLOR_DEFINED
    typedef DWORD D3DCOLOR;
    #define D3DCOLOR_DEFINED
    #endif

    // maps unsigned 8 bits/channel to D3DCOLOR
    #define D3DCOLOR_ARGB(a,r,g,b) \
    ((D3DCOLOR)((((a)&0xff)<<24)|(((r)&0 xff)<<16)|(((g)&0xff)<<8)|((b)&amp ;0xff)))
    #define D3DCOLOR_RGBA(r,g,b,a) D3DCOLOR_ARGB(a,r,g,b)
    #define D3DCOLOR_XRGB(r,g,b) D3DCOLOR_ARGB(0xff,r,g,b)


    The GUI and controls are transparent. The screenshot I posted it from a bank d3d9 application for tests with a grey, because I don't have a copy of Fallout 3, NV, or Oblivion.

Posting Permissions

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