I am working on a project for Game with XNA Framework.
I am using a OptionsMenuScreen class to display different game options/settings to the user.
I have added two UP and DOWN buttons (Texture2D) on the screen that would increase or decrease the screen's brightness.
I am not able to find the logic I would need to use to manipulate the brightness of the screen.
I would really appreciate if you can please point me into the right direction.
Here is the relevant code:
class OptionsMenuScreen : MenuScreen
{
SpriteBatch spriteBatch;
MenuEntry brightness;
Texture2D brightnessUp;
Texture2D brightnessDown;
ContentManager contentManager;
public OptionsMenuScreen() : base("Options")
{
brightness = new MenuEntry("Brightness");
MenuEntries.Add(brightness);
}
public override void LoadContent()
{
if (contentManager == null)
{
contentManager = new ContentManager(ScreenManager.Game.Services, "Content");
}
brightnessUp = contentManager.Load<Texture2D>("handup");
brightnessDown = contentManager.Load<Texture2D>("handdown");
}
public override void Draw(GameTime gameTime)
{
spriteBatch = ScreenManager.SpriteBatch;
var brightnessDownPosition =
new Vector2(brightness.Position.X - 50, brightness.Position.Y - 12);
var brightnessUpPosition =
new Vector2(brightness.Position.X
+ brightness.GetWidth(this) + 8, brightness.Position.Y - 12);
spriteBatch.Begin();
spriteBatch.Draw(brightnessDown,
new Rectangle((int)brightnessDownPosition.X, (int)brightnessDownPosition.Y,
30, 30), Color.White);
spriteBatch.Draw(brightnessUp,
new Rectangle((int)brightnessUpPosition.X, (int)brightnessUpPosition.Y,
30, 30), Color.White);
spriteBatch.End();
base.Draw(gameTime);
}
public override void Update(GameTime gameTime, bool otherScreenHasFocus, bool coveredByOtherScreen)
{
base.Update(gameTime, otherScreenHasFocus, coveredByOtherScreen);
foreach (TouchLocation t in TouchPanel.GetState())
{
if (t.Position.X >= brightnessDown.Bounds.Left
&& t.Position.X <= brightnessDown.Bounds.Right
&& t.Position.Y >= brightnessDown.Bounds.Top
&& t.Position.X <= brightnessDown.Bounds.Bottom)
{
// What should I do here?
}
else if (t.Position.X >= brightnessUp.Bounds.Left
&& t.Position.X <= brightnessUp.Bounds.Right
&& t.Position.Y >= brightnessUp.Bounds.Top
&& t.Position.X <= brightnessUp.Bounds.Bottom)
{
// What should I do here?
}
}
}
}
Thanks a lot for looking into this :)