add a basic event system to clean up scoresaber score receiving

This commit is contained in:
Lee
2024-06-25 10:40:17 +01:00
parent c0ae0fc596
commit aa6ab7d3d8
14 changed files with 222 additions and 116 deletions

View File

@ -0,0 +1,40 @@
package cc.fascinated.bat.service;
import cc.fascinated.bat.event.EventListener;
import cc.fascinated.bat.features.scoresaber.ScoreSaberScoreFeedListener;
import lombok.NonNull;
import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Service;
import java.util.HashSet;
import java.util.Set;
/**
* @author Fascinated (fascinated7)
*/
@Service @Log4j2
public class EventService {
/**
* The list of listeners registered
*/
public static final Set<EventListener> LISTENERS = new HashSet<>();
@Autowired
public EventService(@NonNull ApplicationContext context) {
registerListeners(
context.getBean(ScoreSaberScoreFeedListener.class)
);
log.info("Registered {} listeners.", LISTENERS.size());
}
/**
* Registers an event listener
*
* @param listener the listener to register
*/
public void registerListeners(EventListener... listener) {
LISTENERS.addAll(Set.of(listener));
}
}