AtlasLoader.cs 973 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CommonUI.Cell;
  5. namespace CommonUI.Loader
  6. {
  7. public class AtlasLoader : AbstractLoader
  8. {
  9. private CPJResource cpj = null;
  10. public override void ReleaseTexture()
  11. {
  12. if(cpj != null)
  13. {
  14. cpj.ReleaseTexture();
  15. }
  16. }
  17. public AtlasLoader(string name) : base(name) { }
  18. public override void Dispose()
  19. {
  20. if (cpj != null)
  21. {
  22. cpj.Dispose();
  23. cpj = null;
  24. }
  25. }
  26. public override Display.Image GetImage(string filePath)
  27. {
  28. return null;
  29. }
  30. public override CPJResource GetAtlasResource(string filePath)
  31. {
  32. if (FileName == null) { return null; }
  33. if (cpj == null) { cpj = CPJResource.CreateResource(filePath); }
  34. return cpj;
  35. }
  36. }
  37. }