/src/pony/flash/starling/ui/StarlingMusicPlayer.hx

http://github.com/AxGord/Pony · Haxe · 125 lines · 88 code · 20 blank · 17 comment · 2 complexity · ba523fbc202826c24ce14fcae33a4533 MD5 · raw file

  1. package pony.flash.starling.ui;
  2. import pony.time.DeltaTime;
  3. import starling.display.Sprite;
  4. import starling.display.DisplayObject;
  5. import starling.text.TextField;
  6. import pony.flash.SongPlayerCore;
  7. import pony.flash.SongPlayerCore.SongInfo;
  8. import pony.geom.Point;
  9. import pony.ui.gui.ButtonCore;
  10. import pony.ui.gui.SwitchableList;
  11. using pony.flash.starling.utils.StarlingUtils;
  12. using pony.Tools;
  13. /**
  14. * StarlingMusicPlayer
  15. * @author AxGord
  16. */
  17. class StarlingMusicPlayer extends StarlingSongPlayer {
  18. private var song: DisplayObject;
  19. private var _b: StarlingButton;
  20. private var _tTitle: TextField;
  21. private var _tTime: TextField;
  22. private var songClass: Class<DisplayObject>;
  23. private var beginPoint: Point<Float>;
  24. private var songHeight: Float;
  25. private var sw: SwitchableList;
  26. private var songList: List<DisplayObject> = new List();
  27. private var currentList: Array<SongInfo>;
  28. private var source: Sprite;
  29. override public function new(source: Sprite) {
  30. super(source);
  31. this.source = source;
  32. song = untyped source.getChildByName("song");
  33. _b = untyped song.getChildByName('b');
  34. _tTitle = untyped song.getChildByName('tTitle');
  35. _tTime = untyped song.getChildByName('tTime');
  36. }
  37. override private function init() {
  38. visible = false;
  39. super.init();
  40. songClass = Type.getClass(song);
  41. beginPoint = {x: song.x, y: song.y};
  42. songHeight = song.height;
  43. source.removeChild(song);
  44. song = null;
  45. }
  46. public function loadPlaylist(pl: Array<SongInfo>): Void {
  47. if (visible)
  48. unloadPlaylist();
  49. visible = true;
  50. currentList = pl;
  51. var bcs: Array<ButtonCore> = [];
  52. var i = 0;
  53. for (e in pl) {
  54. var o: Sprite = new Sprite(); // Type.createInstance(songClass, []);
  55. o.x = beginPoint.x;
  56. o.y = beginPoint.y + i * songHeight;
  57. source.addChild(o);
  58. songList.push(o);
  59. var b: StarlingButton = _b.clone();
  60. o.addChild(b);
  61. bcs.push(b.core);
  62. var t: TextField = new TextField(Std.int(_tTitle.width), Std.int(_tTitle.height), SongPlayerCore.formatSong(e), _tTitle.fontName,
  63. _tTitle.fontSize, _tTitle.color, _tTitle.bold);
  64. t.hAlign = _tTitle.hAlign;
  65. t.vAlign = _tTitle.vAlign;
  66. t.x = _tTitle.x;
  67. t.y = _tTitle.y;
  68. t.touchable = false;
  69. o.addChild(t);
  70. var t: TextField = new TextField(Std.int(_tTime.width), Std.int(_tTime.height), e.length, _tTime.fontName, _tTime.fontSize, _tTime.color,
  71. _tTime.bold);
  72. t.hAlign = _tTime.hAlign;
  73. t.vAlign = _tTime.vAlign;
  74. t.x = _tTime.x;
  75. t.y = _tTime.y;
  76. t.touchable = false;
  77. o.addChild(t);
  78. /*
  79. //var b:StarlingButton = untyped o.b;
  80. var b:StarlingButton = untyped o.getChildByName('b');
  81. trace(b);
  82. bcs.push(b.core);
  83. var t:TextField = untyped o.tTitle;
  84. t.text = SongPlayerCore.formatSong(e);
  85. //t.mouseEnabled = false;
  86. var t:TextField = untyped o.tTime;
  87. t.text = e.length;
  88. //t.mouseEnabled = false;
  89. */
  90. i++;
  91. }
  92. sw = new SwitchableList(bcs);
  93. sw.change << select;
  94. core.loadSong(pl[0]);
  95. core.onComplete << sw.next;
  96. }
  97. public function select(n: Int): Void {
  98. var song = currentList[n];
  99. core.loadSong(song);
  100. }
  101. public function unloadPlaylist(): Void {
  102. visible = false;
  103. }
  104. }