Repackaged grammar and (profile/archetype) matchers.

This commit is contained in:
Woody Folsom
2012-03-17 12:05:46 -04:00
parent e1aadadde4
commit 2c5339ba8e
10 changed files with 27 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
package dk.itu.mario.level.matcher;
import dk.itu.mario.MarioInterface.GamePlay;
import dk.itu.mario.engine.DataRecorder;
import dk.itu.mario.level.matcher.PlayerProfile.SKILL_LEVEL;
import dk.itu.mario.level.matcher.PlayerProfile.TYPE;
public class ProfileMatcher {
public static PlayerProfile getMatchingProfile(GamePlay playerMetrics, DataRecorder detailedInfo) {
System.out.println("Selecting PlayerProfile based on GamePlay metrics, DataRecorder logs.");
return new PlayerProfile(SKILL_LEVEL.NOVICE, TYPE.RUNNER);
}
}