refactoring

This commit is contained in:
Brett Sanderson 2016-03-04 08:53:41 -05:00
parent 4daa621905
commit 5b227c39ae
5 changed files with 159 additions and 164 deletions

View File

@ -1,10 +1,9 @@
using System; using System;
using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.Drawing.Imaging; using System.Drawing.Imaging;
using System.IO; using System.IO;
using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Xml.Schema;
namespace CdgLib namespace CdgLib
{ {
@ -25,82 +24,42 @@ namespace CdgLib
private const int CdgPacketSize = 24; private const int CdgPacketSize = 24;
private const int TileHeight = 12; private const int TileHeight = 12;
private const int TileWidth = 6; private const int TileWidth = 6;
public const int CdgFullWidth = 300; public const int FullWidth = 300;
public const int CdgFullHeight = 216; public const int FullHeight = 216;
private const int CdgDisplayWidth = 294; private const int CdgDisplayWidth = 294;
private const int CdgDisplayHeight = 204; private const int CdgDisplayHeight = 204;
private readonly byte[,] _mPixelColours = new byte[CdgFullHeight, CdgFullWidth];
private readonly int[] _mColourTable = new int[ColourTableSize]; private readonly int[] _mColourTable = new int[ColourTableSize];
private int _mPresetColourIndex; private readonly byte[,] _mPixelColours = new byte[FullHeight, FullWidth];
private int _mBorderColourIndex; private int _mBorderColourIndex;
private int _mTransparentColour;
private int _mHOffset;
private int _mVOffset;
private CdgFileIoStream _mPStream;
private Surface _mPSurface;
private long _previousPosition;
private long _mDuration; private long _mDuration;
private int _mHOffset;
private Bitmap _mImage; private Bitmap _mImage;
public bool Transparent => true; private int _mPresetColourIndex;
private CdgFileIoStream _mPStream;
private readonly Surface _mPSurface;
private int _mTransparentColour;
private int _mVOffset;
private long _previousPosition;
public Image RgbImage public CdgFile(string path, FileMode mode, FileAccess fileAccess) : base(path, mode, fileAccess, FileShare.Read)
{
get
{
Stream temp = new MemoryStream();
try
{
var i = 0;
for (var ri = 0; ri <= CdgFullHeight - 1; ri++)
{
for (var ci = 0; ci <= CdgFullWidth - 1; ci++)
{
var argbInt = _mPSurface.RgbData[ri, ci];
var myByte = new byte[4];
myByte = BitConverter.GetBytes(argbInt);
temp.Write(myByte, 0, 4);
}
}
}
catch (Exception ex)
{
//Do nothing (empty bitmap will be returned)
}
var myBitmap = GraphicUtil.StreamToBitmap(ref temp, CdgFullWidth, CdgFullHeight);
if (Transparent)
{
myBitmap.MakeTransparent(myBitmap.GetPixel(1, 1));
}
return myBitmap;
}
}
//Png Export
public void SavePng(string filename)
{
RgbImage.Save(filename, ImageFormat.Png);
}
//New
public CdgFile(string path, FileMode mode, FileAccess fileAccess) : base(path, mode, fileAccess)
{ {
_mPSurface = new Surface(); _mPSurface = new Surface();
} }
public bool Transparent => true;
private long Duration => Length / CdgPacketSize * 1000 / 300; public long Duration => Length/CdgPacketSize*1000/300;
public long GetTotalDuration() public async Task<Bitmap> Render(long position = -1)
{ {
return _mDuration; if (position < 0)
} {
position = _previousPosition + CdgPacketSize;
}
public async Task<bool> RenderAtPosition(long position)
{
if (position < _previousPosition) if (position < _previousPosition)
{ {
Position = 0; Reset();
_previousPosition = 0;
} }
//duration of one packet is 1/300 seconds (4 packets per sector, 75 sectors per second) //duration of one packet is 1/300 seconds (4 packets per sector, 75 sectors per second)
@ -108,35 +67,72 @@ namespace CdgLib
var timeToRender = position - _previousPosition; var timeToRender = position - _previousPosition;
_previousPosition += timeToRender; _previousPosition += timeToRender;
var numberOfSubCodePackets = timeToRender*3/10; var numberOfSubCodePackets = timeToRender*3/10;
while (numberOfSubCodePackets > 0)
var subCodePackets = await ReadSubCodeAsync(numberOfSubCodePackets);
foreach (var subCodePacket in subCodePackets)
{ {
var pack = await ReadSubCode(); ProcessPacket(subCodePacket);
ProcessPacket(pack); }
numberOfSubCodePackets -= 1;
RenderSurface();
Bitmap myBitmap;
using (var bitmapStream = new MemoryStream())
{
foreach (var colourValue in _mPSurface.RgbData)
{
var colour = BitConverter.GetBytes(colourValue);
bitmapStream.Write(colour, 0, 4);
}
myBitmap = GraphicUtil.StreamToBitmap(bitmapStream, FullWidth, FullHeight);
} }
Render(); if (Transparent)
return true; {
myBitmap.MakeTransparent(myBitmap.GetPixel(1, 1));
}
return myBitmap;
} }
private async Task<SubCodePacket> ReadSubCode() private void Reset()
{ {
var subCode = new SubCodePacket(); Position = 0;
byte[] buffer = new byte[24]; Array.Clear(_mPixelColours, 0, _mPixelColours.Length);
var bytesRead = await ReadAsync(buffer, 0, 24); Array.Clear(_mColourTable, 0, _mColourTable.Length);
if (bytesRead < 24) _mPresetColourIndex = 0;
_mBorderColourIndex = 0;
_mTransparentColour = 0;
_mHOffset = 0;
_mVOffset = 0;
_mDuration = 0;
_previousPosition = 0;
//clear surface
if (_mPSurface.RgbData != null)
{ {
return new SubCodePacket(); Array.Clear(_mPSurface.RgbData, 0, _mPSurface.RgbData.Length);
} }
}
Array.Copy(buffer, 0, subCode.Command, 0, 1); private async Task<IEnumerable<SubCodePacket>> ReadSubCodeAsync(long numberOfPackets)
Array.Copy(buffer, 1, subCode.Instruction, 0, 1); {
Array.Copy(buffer, 2, subCode.ParityQ, 0, 2); var subCodePackets = new List<SubCodePacket>();
Array.Copy(buffer, 4, subCode.Data, 0, 16); var buffer = new byte[CdgPacketSize*numberOfPackets];
Array.Copy(buffer, 20, subCode.ParityP, 0, 4); var bytesRead = await ReadAsync(buffer, 0, buffer.Length);
return subCode; for (var i = 0; i < bytesRead/CdgPacketSize; i++)
{
var subCodePacket = new SubCodePacket();
Array.Copy(buffer, i*CdgPacketSize + 0, subCodePacket.Command, 0, 1);
Array.Copy(buffer, i*CdgPacketSize + 1, subCodePacket.Instruction, 0, 1);
Array.Copy(buffer, i*CdgPacketSize + 2, subCodePacket.ParityQ, 0, 2);
Array.Copy(buffer, i*CdgPacketSize + 4, subCodePacket.Data, 0, 16);
Array.Copy(buffer, i*CdgPacketSize + 20, subCodePacket.ParityP, 0, 4);
subCodePackets.Add(subCodePacket);
}
return subCodePackets;
} }
@ -147,37 +143,37 @@ namespace CdgLib
switch (instructionCode) switch (instructionCode)
{ {
case CdgInstMemoryPreset: case CdgInstMemoryPreset:
MemoryPreset(ref subCodePacketPacket); MemoryPreset(subCodePacketPacket);
break; break;
case CdgInstBorderPreset: case CdgInstBorderPreset:
BorderPreset(ref subCodePacketPacket); BorderPreset(subCodePacketPacket);
break; break;
case CdgInstTileBlock: case CdgInstTileBlock:
TileBlock(ref subCodePacketPacket, false); TileBlock(subCodePacketPacket, false);
break; break;
case CdgInstScrollPreset: case CdgInstScrollPreset:
Scroll(ref subCodePacketPacket, false); Scroll(subCodePacketPacket, false);
break; break;
case CdgInstScrollCopy: case CdgInstScrollCopy:
Scroll(ref subCodePacketPacket, true); Scroll(subCodePacketPacket, true);
break; break;
case CdgInstDefTranspCol: case CdgInstDefTranspCol:
DefineTransparentColour(ref subCodePacketPacket); DefineTransparentColour(subCodePacketPacket);
break; break;
case CdgInstLoadColTblLo: case CdgInstLoadColTblLo:
LoadColorTable(ref subCodePacketPacket, 0); LoadColorTable(subCodePacketPacket, 0);
break; break;
case CdgInstLoadColTblHigh: case CdgInstLoadColTblHigh:
LoadColorTable(ref subCodePacketPacket, 1); LoadColorTable(subCodePacketPacket, 1);
break; break;
case CdgInstTileBlockXor: case CdgInstTileBlockXor:
TileBlock(ref subCodePacketPacket, true); TileBlock(subCodePacketPacket, true);
break; break;
} }
} }
private void MemoryPreset(ref SubCodePacket pack) private void MemoryPreset(SubCodePacket pack)
{ {
var colour = 0; var colour = 0;
var ri = 0; var ri = 0;
@ -206,18 +202,18 @@ namespace CdgLib
//Set the preset colour for every pixel. Must be stored in //Set the preset colour for every pixel. Must be stored in
//the pixel colour table indeces array //the pixel colour table indeces array
for (ri = 0; ri <= CdgFullHeight - 1; ri++) for (ri = 0; ri <= FullHeight - 1; ri++)
{ {
for (ci = 0; ci <= CdgFullWidth - 1; ci++) for (ci = 0; ci <= FullWidth - 1; ci++)
{ {
_mPixelColours[ri, ci] = (byte)colour; _mPixelColours[ri, ci] = (byte) colour;
} }
} }
} }
} }
private void BorderPreset(ref SubCodePacket pack) private void BorderPreset(SubCodePacket pack)
{ {
var colour = 0; var colour = 0;
var ri = 0; var ri = 0;
@ -230,35 +226,35 @@ namespace CdgLib
//defined by (0,0,300,216) minus the interior pixels which are contained //defined by (0,0,300,216) minus the interior pixels which are contained
//within a rectangle defined by (6,12,294,204). //within a rectangle defined by (6,12,294,204).
for (ri = 0; ri <= CdgFullHeight - 1; ri++) for (ri = 0; ri <= FullHeight - 1; ri++)
{ {
for (ci = 0; ci <= 5; ci++) for (ci = 0; ci <= 5; ci++)
{ {
_mPixelColours[ri, ci] = (byte)colour; _mPixelColours[ri, ci] = (byte) colour;
} }
for (ci = CdgFullWidth - 6; ci <= CdgFullWidth - 1; ci++) for (ci = FullWidth - 6; ci <= FullWidth - 1; ci++)
{ {
_mPixelColours[ri, ci] = (byte)colour; _mPixelColours[ri, ci] = (byte) colour;
} }
} }
for (ci = 6; ci <= CdgFullWidth - 7; ci++) for (ci = 6; ci <= FullWidth - 7; ci++)
{ {
for (ri = 0; ri <= 11; ri++) for (ri = 0; ri <= 11; ri++)
{ {
_mPixelColours[ri, ci] = (byte)colour; _mPixelColours[ri, ci] = (byte) colour;
} }
for (ri = CdgFullHeight - 12; ri <= CdgFullHeight - 1; ri++) for (ri = FullHeight - 12; ri <= FullHeight - 1; ri++)
{ {
_mPixelColours[ri, ci] = (byte)colour; _mPixelColours[ri, ci] = (byte) colour;
} }
} }
} }
private void LoadColorTable(ref SubCodePacket pack, int table) private void LoadColorTable(SubCodePacket pack, int table)
{ {
for (var i = 0; i <= 7; i++) for (var i = 0; i <= 7; i++)
{ {
@ -266,8 +262,8 @@ namespace CdgLib
//7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 //7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0
//X X r r r r g g X X g g b b b b //X X r r r r g g X X g g b b b b
var byte0 = pack.Data[2 * i]; var byte0 = pack.Data[2*i];
var byte1 = pack.Data[2 * i + 1]; var byte1 = pack.Data[2*i + 1];
var red = (byte0 & 0x3f) >> 2; var red = (byte0 & 0x3f) >> 2;
var green = ((byte0 & 0x3) << 2) | ((byte1 & 0x3f) >> 4); var green = ((byte0 & 0x3) << 2) | ((byte1 & 0x3f) >> 4);
var blue = byte1 & 0xf; var blue = byte1 & 0xf;
@ -278,13 +274,13 @@ namespace CdgLib
if (_mPSurface != null) if (_mPSurface != null)
{ {
_mColourTable[i + table * 8] = _mPSurface.MapRgbColour(red, green, blue); _mColourTable[i + table*8] = _mPSurface.MapRgbColour(red, green, blue);
} }
} }
} }
private void TileBlock(ref SubCodePacket pack, bool bXor) private void TileBlock(SubCodePacket pack, bool bXor)
{ {
var colour0 = 0; var colour0 = 0;
var colour1 = 0; var colour1 = 0;
@ -298,12 +294,12 @@ namespace CdgLib
colour0 = pack.Data[0] & 0xf; colour0 = pack.Data[0] & 0xf;
colour1 = pack.Data[1] & 0xf; colour1 = pack.Data[1] & 0xf;
rowIndex = (pack.Data[2] & 0x1f) * 12; rowIndex = (pack.Data[2] & 0x1f)*12;
columnIndex = (pack.Data[3] & 0x3f) * 6; columnIndex = (pack.Data[3] & 0x3f)*6;
if (rowIndex > CdgFullHeight - TileHeight) if (rowIndex > FullHeight - TileHeight)
return; return;
if (columnIndex > CdgFullWidth - TileWidth) if (columnIndex > FullWidth - TileWidth)
return; return;
//Set the pixel array for each of the pixels in the 12x6 tile. //Set the pixel array for each of the pixels in the 12x6 tile.
@ -349,18 +345,18 @@ namespace CdgLib
//Set the pixel with the new colour. We set both the surfarray //Set the pixel with the new colour. We set both the surfarray
//containing actual RGB values, as well as our array containing //containing actual RGB values, as well as our array containing
//the colour indexes into our colour table. //the colour indexes into our colour table.
_mPixelColours[rowIndex + i, columnIndex + j] = (byte)newCol; _mPixelColours[rowIndex + i, columnIndex + j] = (byte) newCol;
} }
} }
} }
private void DefineTransparentColour(ref SubCodePacket pack) private void DefineTransparentColour(SubCodePacket pack)
{ {
_mTransparentColour = pack.Data[0] & 0xf; _mTransparentColour = pack.Data[0] & 0xf;
} }
private void Scroll(ref SubCodePacket pack, bool copy) private void Scroll(SubCodePacket pack, bool copy)
{ {
var colour = 0; var colour = 0;
var hScroll = 0; var hScroll = 0;
@ -417,19 +413,19 @@ namespace CdgLib
//Perform the actual scroll. //Perform the actual scroll.
var temp = new byte[CdgFullHeight + 1, CdgFullWidth + 1]; var temp = new byte[FullHeight + 1, FullWidth + 1];
var vInc = vScrollPixels + CdgFullHeight; var vInc = vScrollPixels + FullHeight;
var hInc = hScrollPixels + CdgFullWidth; var hInc = hScrollPixels + FullWidth;
var ri = 0; var ri = 0;
//row index //row index
var ci = 0; var ci = 0;
//column index //column index
for (ri = 0; ri <= CdgFullHeight - 1; ri++) for (ri = 0; ri <= FullHeight - 1; ri++)
{ {
for (ci = 0; ci <= CdgFullWidth - 1; ci++) for (ci = 0; ci <= FullWidth - 1; ci++)
{ {
temp[(ri + vInc) % CdgFullHeight, (ci + hInc) % CdgFullWidth] = _mPixelColours[ri, ci]; temp[(ri + vInc)%FullHeight, (ci + hInc)%FullWidth] = _mPixelColours[ri, ci];
} }
} }
@ -442,21 +438,21 @@ namespace CdgLib
{ {
if (vScrollPixels > 0) if (vScrollPixels > 0)
{ {
for (ci = 0; ci <= CdgFullWidth - 1; ci++) for (ci = 0; ci <= FullWidth - 1; ci++)
{ {
for (ri = 0; ri <= vScrollPixels - 1; ri++) for (ri = 0; ri <= vScrollPixels - 1; ri++)
{ {
temp[ri, ci] = (byte)colour; temp[ri, ci] = (byte) colour;
} }
} }
} }
else if (vScrollPixels < 0) else if (vScrollPixels < 0)
{ {
for (ci = 0; ci <= CdgFullWidth - 1; ci++) for (ci = 0; ci <= FullWidth - 1; ci++)
{ {
for (ri = CdgFullHeight + vScrollPixels; ri <= CdgFullHeight - 1; ri++) for (ri = FullHeight + vScrollPixels; ri <= FullHeight - 1; ri++)
{ {
temp[ri, ci] = (byte)colour; temp[ri, ci] = (byte) colour;
} }
} }
} }
@ -466,19 +462,19 @@ namespace CdgLib
{ {
for (ci = 0; ci <= hScrollPixels - 1; ci++) for (ci = 0; ci <= hScrollPixels - 1; ci++)
{ {
for (ri = 0; ri <= CdgFullHeight - 1; ri++) for (ri = 0; ri <= FullHeight - 1; ri++)
{ {
temp[ri, ci] = (byte)colour; temp[ri, ci] = (byte) colour;
} }
} }
} }
else if (hScrollPixels < 0) else if (hScrollPixels < 0)
{ {
for (ci = CdgFullWidth + hScrollPixels; ci <= CdgFullWidth - 1; ci++) for (ci = FullWidth + hScrollPixels; ci <= FullWidth - 1; ci++)
{ {
for (ri = 0; ri <= CdgFullHeight - 1; ri++) for (ri = 0; ri <= FullHeight - 1; ri++)
{ {
temp[ri, ci] = (byte)colour; temp[ri, ci] = (byte) colour;
} }
} }
} }
@ -486,25 +482,25 @@ namespace CdgLib
//Now copy the temporary buffer back to our array //Now copy the temporary buffer back to our array
for (ri = 0; ri <= CdgFullHeight - 1; ri++) for (ri = 0; ri <= FullHeight - 1; ri++)
{ {
for (ci = 0; ci <= CdgFullWidth - 1; ci++) for (ci = 0; ci <= FullWidth - 1; ci++)
{ {
_mPixelColours[ri, ci] = temp[ri, ci]; _mPixelColours[ri, ci] = temp[ri, ci];
} }
} }
} }
private void Render() private void RenderSurface()
{ {
if (_mPSurface == null) if (_mPSurface == null)
return; return;
for (var ri = 0; ri <= CdgFullHeight - 1; ri++) for (var ri = 0; ri <= FullHeight - 1; ri++)
{ {
for (var ci = 0; ci <= CdgFullWidth - 1; ci++) for (var ci = 0; ci <= FullWidth - 1; ci++)
{ {
if (ri < TileHeight || ri >= CdgFullHeight - TileHeight || ci < TileWidth || if (ri < TileHeight || ri >= FullHeight - TileHeight || ci < TileWidth ||
ci >= CdgFullWidth - TileWidth) ci >= FullWidth - TileWidth)
{ {
_mPSurface.RgbData[ri, ci] = _mColourTable[_mBorderColourIndex]; _mPSurface.RgbData[ri, ci] = _mColourTable[_mBorderColourIndex];
} }
@ -515,6 +511,5 @@ namespace CdgLib
} }
} }
} }
} }
} }

View File

@ -36,7 +36,7 @@ namespace CdgLib
/// <param name="width">The width.</param> /// <param name="width">The width.</param>
/// <param name="height">The height.</param> /// <param name="height">The height.</param>
/// <returns></returns> /// <returns></returns>
public static Bitmap StreamToBitmap(ref Stream stream, int width, int height) public static Bitmap StreamToBitmap(Stream stream, int width, int height)
{ {
//create a new bitmap //create a new bitmap
var bmp = new Bitmap(width, height, PixelFormat.Format32bppArgb); var bmp = new Bitmap(width, height, PixelFormat.Format32bppArgb);
@ -61,7 +61,7 @@ namespace CdgLib
public static Bitmap GetCdgSizeBitmap(string filename) public static Bitmap GetCdgSizeBitmap(string filename)
{ {
var bm = new Bitmap(filename); var bm = new Bitmap(filename);
return ResizeBitmap(ref bm, CdgFile.CdgFullWidth, CdgFile.CdgFullHeight); return ResizeBitmap(ref bm, CdgFile.FullWidth, CdgFile.FullHeight);
} }
/// <summary> /// <summary>

View File

@ -4,7 +4,7 @@ namespace CdgLib
{ {
public class Surface public class Surface
{ {
public int[,] RgbData = new int[CdgFile.CdgFullHeight, CdgFile.CdgFullWidth]; public int[,] RgbData = new int[CdgFile.FullHeight, CdgFile.FullWidth];
public int MapRgbColour(int red, int green, int blue) public int MapRgbColour(int red, int green, int blue)
{ {

View File

@ -27,8 +27,8 @@ namespace KaraokeConverter
try try
{ {
if (IsMovie(backgroundFileName)) if (IsMovie(backgroundFileName))
backgroundBmp = MovieFrameExtractor.GetBitmap(0, backgroundFileName, CdgFile.CdgFullWidth, backgroundBmp = MovieFrameExtractor.GetBitmap(0, backgroundFileName, CdgFile.FullWidth,
CdgFile.CdgFullHeight); CdgFile.FullHeight);
if (IsGraphic(backgroundFileName)) if (IsGraphic(backgroundFileName))
backgroundBmp = GraphicUtil.GetCdgSizeBitmap(backgroundFileName); backgroundBmp = GraphicUtil.GetCdgSizeBitmap(backgroundFileName);
} }
@ -64,7 +64,7 @@ namespace KaraokeConverter
{ {
if (IsMovie(backgroundFileName)) if (IsMovie(backgroundFileName))
backgroundBmp = MovieFrameExtractor.GetBitmap(position/1000, backgroundFileName, backgroundBmp = MovieFrameExtractor.GetBitmap(position/1000, backgroundFileName,
CdgFile.CdgFullWidth, CdgFile.CdgFullHeight); CdgFile.FullWidth, CdgFile.FullHeight);
} }
if (backgroundBmp != null) if (backgroundBmp != null)
{ {

View File

@ -1,5 +1,7 @@
using System; using System;
using System.Diagnostics;
using System.Drawing; using System.Drawing;
using System.Drawing.Imaging;
using System.IO; using System.IO;
using System.Reflection; using System.Reflection;
using System.Threading; using System.Threading;
@ -19,35 +21,19 @@ namespace KaraokePlayer
private OverlayForm _overlayForm; private OverlayForm _overlayForm;
private DateTime _startTime; private DateTime _startTime;
private readonly System.Timers.Timer _lyricTimer = new System.Timers.Timer(); private readonly System.Timers.Timer _lyricTimer = new System.Timers.Timer();
private Stopwatch _stopwatch = new Stopwatch();
public KaraokeVideoPlayer() public KaraokeVideoPlayer()
{ {
InitializeComponent(); InitializeComponent();
_lyricTimer.Interval = 50; _lyricTimer.Interval = 500;
_lyricTimer.Elapsed += LyricTimerOnElapsed; _lyricTimer.Elapsed += LyricTimerOnElapsed;
} }
private async void LyricTimerOnElapsed(object sender, ElapsedEventArgs elapsedEventArgs) private async void LyricTimerOnElapsed(object sender, ElapsedEventArgs elapsedEventArgs)
{ {
System.Diagnostics.Debug.Print((DateTime.Now - _startTime).TotalMilliseconds.ToString());
if (vlcPlayer.IsPlaying)
{
await _cdgFile.RenderAtPosition(
(long)(DateTime.Now - _startTime).TotalMilliseconds);
Invoke((MethodInvoker)(() =>
{
_lyrics.Image = _cdgFile.RgbImage;
_lyrics.BackColor = ((Bitmap)_cdgFile.RgbImage).GetPixel(1, 1);
}));
}
else
{
this.Enabled = false;
}
} }
public void Play(Uri file) public void Play(Uri file)
@ -57,10 +43,24 @@ namespace KaraokePlayer
vlcPlayer.Play(); vlcPlayer.Play();
} }
private void vlcPlayer_Playing(object sender, VlcMediaPlayerPlayingEventArgs e) private async void vlcPlayer_Playing(object sender, VlcMediaPlayerPlayingEventArgs e)
{ {
_startTime = DateTime.Now; _startTime = DateTime.Now;
_lyricTimer.Start(); _lyricTimer.Start();
while (vlcPlayer.IsPlaying)
{
var stopwatch = new Stopwatch();
stopwatch.Start();
var picture = await _cdgFile.Render((long) (DateTime.Now - _startTime).TotalMilliseconds);
stopwatch.Reset();
Debug.Print(stopwatch.ElapsedMilliseconds.ToString());
_lyrics.Image = picture;
}
} }
private void vlcPlayer_TimeChanged(object sender, VlcMediaPlayerTimeChangedEventArgs e) private void vlcPlayer_TimeChanged(object sender, VlcMediaPlayerTimeChangedEventArgs e)
@ -84,7 +84,7 @@ namespace KaraokePlayer
private void vlcPlayer_VlcLibDirectoryNeeded(object sender, Vlc.DotNet.Forms.VlcLibDirectoryNeededEventArgs e) private void vlcPlayer_VlcLibDirectoryNeeded(object sender, Vlc.DotNet.Forms.VlcLibDirectoryNeededEventArgs e)
{ {
e.VlcLibDirectory = new DirectoryInfo(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"lib\vlc\")); e.VlcLibDirectory = new DirectoryInfo(@"lib\vlc\");
} }
} }
} }