| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- using Microsoft.Xna.Framework;
- using Microsoft.Xna.Framework.Graphics;
- using System;
- namespace FF8
- {
- public class Module_card_test
- {
- #region Fields
- private static Mode currentMode;
- private static Cards.ID[] CardValue;
- private static int pointer = -1;
- private static int time;
- #endregion Fields
- #region Enums
- private enum Mode
- {
- Initialize,
- Draw,
- Wait
- }
- #endregion Enums
- #region Methods
- public static void Draw()
- {
- switch (currentMode)
- {
- case Mode.Initialize:
- break;
- case Mode.Wait:
- case Mode.Draw:
- DrawFace();
- break;
- }
- }
- public static void Update()
- {
- switch (currentMode)
- {
- case Mode.Initialize:
- Initialize();
- currentMode++;
- break;
- case Mode.Draw:
- pointer++;
- if (pointer >= CardValue.Length) pointer = 0;
- currentMode++;
- break;
- case Mode.Wait:
- time += Memory.gameTime.ElapsedGameTime.Milliseconds;
- if (time > 2000)
- {
- currentMode--;
- time = 0;
- }
- else
- Memory.SuppressDraw = true;
- break;
- }
- }
- private static void DrawFace()
- {
- if (pointer >= 0)
- {
- Viewport vp = Memory.graphics.GraphicsDevice.Viewport;
- var id = CardValue[pointer];
- uint pos = (uint)id;
- //int i = cards.GetEntry(id).File;
- uint col = (uint)(Memory.Cards.GetEntry(id).X / Memory.Cards.GetEntry(id).Width) +1;
- uint row = (uint)(Memory.Cards.GetEntry(id).Y / Memory.Cards.GetEntry(id).Width) +1;
- float scale = vp.Height / Memory.Cards.GetEntry(id).Height;
- Rectangle dst = new Rectangle(new Point(0), (Memory.Cards.GetEntry(id).Size * scale).ToPoint());
- dst.Offset(vp.Width / 2 - dst.Center.X, 0);
- Memory.SpriteBatchStartAlpha();
- Memory.spriteBatch.GraphicsDevice.Clear(Color.Black);
- Memory.Cards.Draw(id, dst);
- Memory.font.RenderBasicText(
- $"{CardValue[pointer].ToString().Replace('_', ' ')}\n" +
- $"pos: {pos}\n" +
- $"col: {col}\n" +
- $"row: {row}\n" +
- $"x: {Memory.Cards.GetEntry(id).X}\n" +
- $"y: {Memory.Cards.GetEntry(id).Y}\n" +
- $"width: {Memory.Cards.GetEntry(id).Width}\n" +
- $"height: {Memory.Cards.GetEntry(id).Height}",
- (int)(vp.Width * 0.10f), (int)(vp.Height * 0.05f), lineSpacing: 1);
- Memory.SpriteBatchEnd();
- }
- }
- private static void Initialize()
- {
- CardValue = (Cards.ID[])Enum.GetValues(typeof(Cards.ID));
- Array.Sort(CardValue);
- }
- #endregion Methods
- }
- }
|