1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
/*
* EmptyWaveGenerator.cs
* Copyright © 2010-2011 kbinani
*
* This file is part of org.kbinani.cadencii.
*
* org.kbinani.cadencii is free software; you can redistribute it and/or
* modify it under the terms of the GPLv3 License.
*
* org.kbinani.cadencii is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#if JAVA
package org.kbinani.cadencii;
#else
using System;
using System.Threading;
namespace org.kbinani.cadencii
{
using boolean = System.Boolean;
#endif
/// <summary>
/// 無音の波形を送信するWaveGenerator
/// </summary>
#if JAVA
public class EmptyWaveGenerator extends WaveUnit implements WaveGenerator
#else
public class EmptyWaveGenerator : WaveUnit, WaveGenerator
#endif
{
private const int VERSION = 0;
private const int BUFLEN = 1024;
private WaveReceiver mReceiver = null;
private boolean mAbortRequested = false;
private boolean mRunning = false;
private long mTotalAppend = 0L;
private long mTotalSamples = 0L;
private int mSampleRate = 0;
public int getSampleRate()
{
return mSampleRate;
}
public boolean isRunning()
{
return mRunning;
}
public long getPosition()
{
return mTotalAppend;
}
public long getTotalSamples()
{
return mTotalSamples;
}
public double getProgress()
{
if ( mTotalSamples <= 0 ) {
return 0.0;
} else {
return mTotalAppend / (double)mTotalSamples;
}
}
public override int getVersion()
{
return VERSION;
}
public override void setConfig( String parameter )
{
// do nothing
}
public void begin( long samples, WorkerState state )
{
if ( mReceiver == null ) return;
mRunning = true;
mTotalSamples = samples;
double[] l = new double[BUFLEN];
double[] r = new double[BUFLEN];
for ( int i = 0; i < BUFLEN; i++ ) {
l[i] = 0.0;
r[i] = 0.0;
}
long remain = samples;
while ( remain > 0 && !mAbortRequested ) {
int amount = (remain > BUFLEN) ? BUFLEN : (int)remain;
mReceiver.push( l, r, amount );
remain -= amount;
mTotalAppend += amount;
}
mRunning = false;
mReceiver.end();
}
public void setReceiver( WaveReceiver receiver )
{
mReceiver = receiver;
}
public void init( VsqFileEx vsq, int track, int start_clock, int end_clock, int sample_rate )
{
mSampleRate = sample_rate;
}
public void stop()
{
if ( mRunning ) {
mAbortRequested = true;
while ( mRunning ) {
#if JAVA
try{
Thread.sleep( 100 );
}catch( Exception ex ){
}
#else
Thread.Sleep( 100 );
#endif
}
}
}
}
#if !JAVA
}
#endif
|