/* match animation troughout keys sequences*/
long now = System.currentTimeMillis();
SortedMap<Long, KeyEventWrapper> filter = filterKeysSequence(threadedEventsSequence, now);
threadedEventsSequence.clear();
if (isDebugEnabled()) {
System.out.println(JXAenvUtils.log("current key input filter @ " + now + " #### " + new KeyEventWrapper(new Vector<KeyEventWrapper>(filter.values())), JXAenvUtils.LVL.APP_NOT));
}
KeyEventWrapper match = processMatcher(filter);
nextAnimName = keyEvents.get(match);
if (getPlayerStatus() == Animation.PLAYING) {
if (animName instanceof String && nextAnimName instanceof String) {
if (!animName.equals(nextAnimName) && !nextAnimName.startsWith(animName)) {
if (isDebugEnabled()) {