Project 1999

Go Back   Project 1999 > Green Community > Green Server Chat

Closed Thread
 
Thread Tools Display Modes
  #1  
Old 10-16-2019, 09:48 PM
loramin loramin is offline
Planar Protector

loramin's Avatar

Join Date: Jul 2013
Posts: 10,309
Default

Quote:
Originally Posted by deezy [You must be logged in to view images. Log in or Register.]
this is the ui we are replicating.
I would encourage everyone to save themselves time and just refer people here: http://wiki.project1999.com/Green_UI

(Or if that page doesn't tell people what you want, make it! [You must be logged in to view images. Log in or Register.])

Meanwhile, I figured the best way to help would just be to find EVERY <TextColor> element in the entire XML (modulo the stupid windows like the music one). Also I accidentally found one <TabTextActiveColor>. I threw out all the white/black ones (ie. most of them), and then used the rest to create this wiki page:

http://wiki.project1999.com/UI_Color...rackingWnd.xml

If you scroll down to the bottom you'll see what I want to do next, which is convert all those colors to hex, and then check their contrast against black/white in that tool I mentioned. By the end we'll then be able to say "ignoring the translucence, all our colors are WCAG-friendly" ... and if any aren't I'll try to suggest better ones.
__________________

Loramin Frostseer, Oracle of the Tribunal <Anonymous> and Fan of the "Where To Go For XP/For Treasure?" Guides
Anyone can improve the wiki! If you are new to the Blue or Green servers, you can improve the wiki to earn a "welcome package" of platinum and/or gear! Send me a forum message for details.
  #2  
Old 10-16-2019, 09:50 PM
Xer0 Xer0 is offline
Fire Giant

Xer0's Avatar

Join Date: Jul 2012
Posts: 824
Default

If you are actively replicating that then why is the granite background present on multiple elements including the bank, trade ui, spellbook and character creation?
  #3  
Old 10-16-2019, 09:53 PM
deezy deezy is offline
Sarnak

deezy's Avatar

Join Date: Apr 2011
Posts: 464
Default

Quote:
Originally Posted by Xer0 [You must be logged in to view images. Log in or Register.]
If you are actively replicating that then why is the granite background present on multiple elements including the bank, trade ui, spellbook and character creation?
because when you opened up the bank, merchant, trade, etc, it would open it as the marble ui.
  #4  
Old 10-16-2019, 09:56 PM
Xer0 Xer0 is offline
Fire Giant

Xer0's Avatar

Join Date: Jul 2012
Posts: 824
Default

Quote:
Originally Posted by deezy [You must be logged in to view images. Log in or Register.]
because when you opened up the bank, merchant, trade, etc, it would open it as the marble ui.
Right- So my question is rather than replicate full transparency, why not implement the granite background to the remainder of the UI elements?
  #5  
Old 10-16-2019, 09:59 PM
deezy deezy is offline
Sarnak

deezy's Avatar

Join Date: Apr 2011
Posts: 464
Default

Quote:
Originally Posted by Xer0 [You must be logged in to view images. Log in or Register.]
Right- So my question is rather than replicate full transparency, why not implement the granite background to the remainder of the UI elements?
we have where it's appropriate. some windows it is not a trivial amount of effort to change it.
  #6  
Old 10-16-2019, 10:10 PM
Wenai Wenai is offline
VIP / Contributor

Wenai's Avatar

Join Date: Oct 2009
Location: Halifax, NS, Canada
Posts: 1,083
Send a message via MSN to Wenai
Default

Quote:
Originally Posted by deezy [You must be logged in to view images. Log in or Register.]
we have where it's appropriate. some windows it is not a trivial amount of effort to change it.
We have used the Marble Windows, where they were used on the Velious UI. There are a few outliers currently, which you can find in the original #1 post of this thread! They include Merchant Window, Trade Window, etc.
  #7  
Old 10-16-2019, 09:57 PM
loramin loramin is offline
Planar Protector

loramin's Avatar

Join Date: Jul 2013
Posts: 10,309
Default

Quote:
Originally Posted by Xer0 [You must be logged in to view images. Log in or Register.]
If you are actively replicating that then why is the granite background present on multiple elements including the bank, trade ui, spellbook and character creation?
Stupid question: do you see the bank in that screenshot?

Follow up stupid question: if not, what makes you think it didn't have marble elements?

Quote:
Originally Posted by Xer0 [You must be logged in to view images. Log in or Register.]
Right- So my question is rather than replicate full transparency, why not implement the granite background to the remainder of the UI elements?
One more stupid question: do you see the granite background (except for the buttons) in the above screenshot?

There is a very simple answer to all of your questions, which is that everyone involved is trying to make things as classic as possible.

Unfortunately that does not mean the full-screen UI (it's not possible), or even a perfect recreation of the transparent one (we can only get close). But people are making the closest thing they can, and being "as close to classic as possible" is the entire point of green!
__________________

Loramin Frostseer, Oracle of the Tribunal <Anonymous> and Fan of the "Where To Go For XP/For Treasure?" Guides
Anyone can improve the wiki! If you are new to the Blue or Green servers, you can improve the wiki to earn a "welcome package" of platinum and/or gear! Send me a forum message for details.
Last edited by loramin; 10-16-2019 at 10:01 PM..
  #8  
Old 10-16-2019, 09:53 PM
loramin loramin is offline
Planar Protector

loramin's Avatar

Join Date: Jul 2013
Posts: 10,309
Default

On a different note, I can't help but see code like:

Code:
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
... and just cringe. Not only because Verant makes you write three separate RGB values, when one hex value would have sufficed, but also because ... who wants to remember hex or RGB values? What I'd imagine you'd really want is to be able to write something like:

Code:
<TextColor><White/></TextColor>
and then have that convert into the above code.

XML has a whole related technology called XSLT, which is designed to let you do exactly that. The downside of using it is that you'd have an extra step: every time you change a file, you'd have to run a command line command before EQ could use it.

But the up side is that you could make as many <White/>, and other color (or any other value) tags that you want, and you could use them throughout the code. You'd only have to specify that white = 255, 255, 255 in one place, and everywhere else you could just say <White/>

Adding such a stylesheet would have a real cost, so I don't want to oversell it, but IF being able to make your own tags would make things easier enough to be worth it, let me know. It's been years now, but once upon a time XSLT was my jam [You must be logged in to view images. Log in or Register.]
__________________

Loramin Frostseer, Oracle of the Tribunal <Anonymous> and Fan of the "Where To Go For XP/For Treasure?" Guides
Anyone can improve the wiki! If you are new to the Blue or Green servers, you can improve the wiki to earn a "welcome package" of platinum and/or gear! Send me a forum message for details.
  #9  
Old 10-16-2019, 10:03 PM
semioldguy semioldguy is offline
Skeleton


Join Date: Mar 2016
Location: San Diego, CA
Posts: 19
Default

I don't particularly like the Velious UI either, but making it look like crap is on you. With only a few minutes I made mine look and feel much closer to what I feel is classic.
[You must be logged in to view images. Log in or Register.]
  #10  
Old 10-16-2019, 10:06 PM
Xer0 Xer0 is offline
Fire Giant

Xer0's Avatar

Join Date: Jul 2012
Posts: 824
Default

Quote:
Originally Posted by semioldguy [You must be logged in to view images. Log in or Register.]
I don't particularly like the Velious UI either, but making it look like crap is on you. With only a few minutes I made mine look and feel much closer to what I feel is classic.
[You must be logged in to view images. Log in or Register.]
I have always played blue with the windows in the arrangement as displayed in my screenshot; the only big change was my turning them grey in an effort to give them a solid color somewhat close to the granite coloration of the classic UI. I'm not against the movable UI elements, it's the lack of true texturing that I am disheartened by-- texturing that exists in other areas of the UI nd would replicate a perfectly acceptable "classic" motif
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 10:03 PM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.