// Styling of Lemur components // For documentation, see: // https://github.com/jMonkeyEngine-Contributions/Lemur/wiki/Styling import com.jme3.math.ColorRGBA import com.jme3.texture.Texture import com.simsilica.lemur.* import com.simsilica.lemur.component.QuadBackgroundComponent import com.simsilica.lemur.Button import com.simsilica.lemur.Button.ButtonAction import com.simsilica.lemur.Command import com.simsilica.lemur.HAlignment import com.simsilica.lemur.Insets3f import com.simsilica.lemur.component.QuadBackgroundComponent import com.simsilica.lemur.component.TbtQuadBackgroundComponent import pp.monopoly.client.MonopolyApp import pp.monopoly.game.server.Player def bgColor = color(1, 1, 1, 1) def buttonEnabledColor = color(0, 0, 0, 1) def buttonDisabledColor = color(0.8, 0.9, 1, 0.2) def buttonBgColor = color(1, 1, 1, 1) def sliderColor = color(0.6, 0.8, 0.8, 1) def sliderBgColor = color(0.5, 0.75, 0.75, 1) def gradientColor = color(0.5, 0.75, 0.85, 0.5) def tabbuttonEnabledColor = color(0.4, 0.45, 0.5, 1) def solidWhiteBackground = new QuadBackgroundComponent(new ColorRGBA(1, 1, 1, 1)) def greyBackground = new QuadBackgroundComponent(new ColorRGBA(0.1f, 0.1f, 0.1f, 1.0f)); def lightGreyBackground = new QuadBackgroundComponent(new ColorRGBA(0.4f, 0.4f, 0.4f, 1.0f)); def lightGrey = color(0.6, 0.6, 0.6, 1.0) def gradient = TbtQuadBackgroundComponent.create( texture(name: "/com/simsilica/lemur/icons/bordered-gradient.png", generateMips: false), 1, 1, 1, 126, 126, 1f, false) def doubleGradient = new QuadBackgroundComponent(gradientColor) doubleGradient.texture = texture(name: "/com/simsilica/lemur/icons/double-gradient-128.png", generateMips: false) //doubleGradient.color = color(0, 0, 0, 1) def orangeBorder = TbtQuadBackgroundComponent.create( texture(name: "/com/simsilica/lemur/icons/border.png", // Replace with an appropriate texture if needed generateMips: false), 1, 1, 1, 126, 126, 1f, false) orangeBorder.color = color(1, 0.5, 0, 1) // Orange color def createCustomBackground(app) { // Load the texture from the assets Texture texture = app.getAssetManager().loadTexture("Pictures/kontobg.png") // Create the TbtQuadBackgroundComponent def backgroundCustom = TbtQuadBackgroundComponent.create( texture, // The texture to use 1, 1, 1, // Insets for the 9-patch behavior 126, 126, // The size of the texture 1f, // The scale factor false // No tiling ) return backgroundCustom } selector("pp") { font = font("Interface/Fonts/Metropolis/Metropolis-Regular-32.fnt") } selector("label", "pp") { insets = new Insets3f(2, 2, 2, 2) color = buttonEnabledColor } selector("label-Bold", "pp") { insets = new Insets3f(2, 2, 2, 2) font = font("Interface/Fonts/Metropolis/Metropolis-Bold-32.fnt") fontSize = 30 color = buttonEnabledColor textHAlignment = HAlignment.Center textVAlignment = VAlignment.Center } selector("label-toolbar", "pp") { insets = new Insets3f(2, 2, 2, 2) font = font("Interface/Fonts/Metropolis/Metropolis-Bold-32.fnt") fontSize = 25 color = new ColorRGBA(ColorRGBA.White) textHAlignment = HAlignment.Center textVAlignment = VAlignment.Center } selector("label-Text", "pp") { insets = new Insets3f(2, 2, 2, 2) fontSize = 25 color = buttonEnabledColor } selector("label-account", "pp") { insets = new Insets3f(2, 2, 2, 2) fontSize = 25 color = new ColorRGBA(ColorRGBA.White) textHAlignment = HAlignment.Center textVAlignment = VAlignment.Center } selector("card-label", "pp") { insets = new Insets3f(2, 2, 2, 2) color = ColorRGBA.Black } selector("header", "pp") { font = font("Interface/Fonts/Metropolis/Metropolis-Bold-42.fnt") insets = new Insets3f(2, 2, 2, 2) color = color(1, 0.5, 0, 1) textHAlignment = HAlignment.Center textVAlignment = VAlignment.Center } selector("container", "pp") { background = solidWhiteBackground.clone() background.setColor(bgColor) } selector("toolbar") { background = gradient.clone() background.setColor(bgColor) //color = (new ColorRGBA(0.4157f, 0.4235f, 0.4392f, 1.0f)) } selector("slider", "pp") { background = gradient.clone() background.setColor(bgColor) } def pressedCommand = new Command