Search in sources :

Example 1 with FadeAction

use of org.eclipse.smarthome.binding.dmx.internal.action.FadeAction in project smarthome by eclipse.

the class ChaserThingHandler method handleCommand.

@Override
public void handleCommand(ChannelUID channelUID, Command command) {
    switch(channelUID.getId()) {
        case CHANNEL_SWITCH:
            if (command instanceof OnOffType) {
                if (((OnOffType) command).equals(OnOffType.ON)) {
                    Integer channelCounter = 0;
                    for (DmxChannel channel : channels) {
                        if (resumeAfter) {
                            channel.suspendAction();
                        } else {
                            channel.clearAction();
                        }
                        for (ValueSet value : values) {
                            channel.addChannelAction(new FadeAction(value.getFadeTime(), value.getValue(channelCounter), value.getHoldTime()));
                        }
                        if (resumeAfter) {
                            channel.addChannelAction(new ResumeAction());
                        }
                        channel.addListener(channelUID, this, ListenerType.ACTION);
                        channelCounter++;
                    }
                } else {
                    for (DmxChannel channel : channels) {
                        if (resumeAfter && channel.isSuspended()) {
                            channel.setChannelAction(new ResumeAction());
                        } else {
                            channel.clearAction();
                        }
                    }
                }
            } else if (command instanceof RefreshType) {
                updateState(channelUID, isRunning);
            } else {
                logger.debug("command {} not supported in channel {}:switch", command.getClass(), this.thing.getUID());
            }
            break;
        case CHANNEL_CONTROL:
            if (command instanceof StringType) {
                Vector<ValueSet> oldValues = new Vector<ValueSet>(values);
                if (parseChaserConfig(((StringType) command).toString())) {
                    logger.debug("updated chase config in {}", this.thing.getUID());
                } else {
                    // restore old chase config
                    values = oldValues;
                    logger.debug("could not update chase config in {}, malformed", this.thing.getUID());
                }
            } else {
                logger.debug("command {} not supported in channel {}:control", command.getClass(), this.thing.getUID());
            }
            break;
        default:
            logger.debug("Channel {} not supported in thing {}", channelUID.getId(), this.thing.getUID());
    }
}
Also used : FadeAction(org.eclipse.smarthome.binding.dmx.internal.action.FadeAction) BaseDmxChannel(org.eclipse.smarthome.binding.dmx.internal.multiverse.BaseDmxChannel) DmxChannel(org.eclipse.smarthome.binding.dmx.internal.multiverse.DmxChannel) OnOffType(org.eclipse.smarthome.core.library.types.OnOffType) StringType(org.eclipse.smarthome.core.library.types.StringType) ResumeAction(org.eclipse.smarthome.binding.dmx.internal.action.ResumeAction) RefreshType(org.eclipse.smarthome.core.types.RefreshType) ValueSet(org.eclipse.smarthome.binding.dmx.internal.ValueSet) Vector(java.util.Vector)

Example 2 with FadeAction

use of org.eclipse.smarthome.binding.dmx.internal.action.FadeAction in project smarthome by eclipse.

the class FadeActionTest method checkWithFadingWithoutHold.

@Test
public void checkWithFadingWithoutHold() {
    FadeAction fadeAction = new FadeAction(testFadeTime, testValue, 0);
    DmxChannel testChannel = new DmxChannel(0, 1, 0);
    testChannel.setValue(0);
    long startTime = System.currentTimeMillis();
    assertThat(fadeAction.getState(), is(ActionState.WAITING));
    assertThat(fadeAction.getNewValue(testChannel, startTime), is(0));
    assertThat(fadeAction.getState(), is(ActionState.RUNNING));
    assertThat(fadeAction.getNewValue(testChannel, startTime + testFadeTime / 2), is(256 * testValue / 2));
    assertThat(fadeAction.getNewValue(testChannel, startTime + 1000), is(256 * testValue));
    assertThat(fadeAction.getState(), is(ActionState.COMPLETED));
    fadeAction.reset();
    assertThat(fadeAction.getState(), is(ActionState.WAITING));
}
Also used : FadeAction(org.eclipse.smarthome.binding.dmx.internal.action.FadeAction) DmxChannel(org.eclipse.smarthome.binding.dmx.internal.multiverse.DmxChannel) Test(org.junit.Test)

Example 3 with FadeAction

use of org.eclipse.smarthome.binding.dmx.internal.action.FadeAction in project smarthome by eclipse.

the class FadeActionTest method checkWithoutFadingWithInfiniteHold.

@Test
public void checkWithoutFadingWithInfiniteHold() {
    FadeAction fadeAction = new FadeAction(0, testValue, -1);
    DmxChannel testChannel = new DmxChannel(0, 1, 0);
    testChannel.setValue(0);
    long startTime = System.currentTimeMillis();
    assertThat(fadeAction.getState(), is(ActionState.WAITING));
    assertThat(fadeAction.getNewValue(testChannel, startTime), is(256 * testValue));
    assertThat(fadeAction.getState(), is(ActionState.COMPLETEDFINAL));
    fadeAction.reset();
    assertThat(fadeAction.getState(), is(ActionState.WAITING));
}
Also used : FadeAction(org.eclipse.smarthome.binding.dmx.internal.action.FadeAction) DmxChannel(org.eclipse.smarthome.binding.dmx.internal.multiverse.DmxChannel) Test(org.junit.Test)

Example 4 with FadeAction

use of org.eclipse.smarthome.binding.dmx.internal.action.FadeAction in project smarthome by eclipse.

the class DmxChannelTest method checkSingleFadeAction.

@Test
public void checkSingleFadeAction() {
    dmxChannel.addChannelAction(new FadeAction(1000, 243, -1));
    dmxChannel.getNewValue(currentTime);
    assertThat(dmxChannel.hasRunningActions(), is(true));
    Mockito.verify(dimmerThingHandler).updateChannelValue(valueChannelUID, 0);
    dmxChannel.getNewValue(currentTime + 1000);
    assertThat(dmxChannel.hasRunningActions(), is(false));
    Mockito.verify(dimmerThingHandler).updateChannelValue(valueChannelUID, 243);
}
Also used : FadeAction(org.eclipse.smarthome.binding.dmx.internal.action.FadeAction) Test(org.junit.Test)

Example 5 with FadeAction

use of org.eclipse.smarthome.binding.dmx.internal.action.FadeAction in project smarthome by eclipse.

the class DmxChannelTest method checkFadeActionWithResume.

@Test
public void checkFadeActionWithResume() {
    dmxChannel.setValue(127);
    dmxChannel.suspendAction();
    dmxChannel.addChannelAction(new FadeAction(1000, 243, 0));
    dmxChannel.addChannelAction(new ResumeAction());
    dmxChannel.getNewValue(currentTime);
    assertThat(dmxChannel.hasRunningActions(), is(true));
    Mockito.verify(dimmerThingHandler).updateChannelValue(valueChannelUID, 127);
    // check action completes
    dmxChannel.getNewValue(currentTime);
    currentTime += 1000;
    dmxChannel.getNewValue(currentTime);
    assertThat(dmxChannel.hasRunningActions(), is(true));
    Mockito.verify(dimmerThingHandler).updateChannelValue(valueChannelUID, 243);
    // check state is restored
    dmxChannel.getNewValue(currentTime);
    assertThat(dmxChannel.hasRunningActions(), is(false));
    Mockito.verify(dimmerThingHandler).updateChannelValue(valueChannelUID, 127);
}
Also used : FadeAction(org.eclipse.smarthome.binding.dmx.internal.action.FadeAction) ResumeAction(org.eclipse.smarthome.binding.dmx.internal.action.ResumeAction) Test(org.junit.Test)

Aggregations

FadeAction (org.eclipse.smarthome.binding.dmx.internal.action.FadeAction)14 Test (org.junit.Test)10 DmxChannel (org.eclipse.smarthome.binding.dmx.internal.multiverse.DmxChannel)8 ValueSet (org.eclipse.smarthome.binding.dmx.internal.ValueSet)4 OnOffType (org.eclipse.smarthome.core.library.types.OnOffType)4 RefreshType (org.eclipse.smarthome.core.types.RefreshType)4 DecimalType (org.eclipse.smarthome.core.library.types.DecimalType)3 IncreaseDecreaseType (org.eclipse.smarthome.core.library.types.IncreaseDecreaseType)3 PercentType (org.eclipse.smarthome.core.library.types.PercentType)3 ResumeAction (org.eclipse.smarthome.binding.dmx.internal.action.ResumeAction)2 BaseDmxChannel (org.eclipse.smarthome.binding.dmx.internal.multiverse.BaseDmxChannel)2 Vector (java.util.Vector)1 HSBType (org.eclipse.smarthome.core.library.types.HSBType)1 StringType (org.eclipse.smarthome.core.library.types.StringType)1