/*
* This file is part of ARSnova Backend.
* Copyright (C) 2012-2017 The ARSnova Team
*
* ARSnova Backend is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ARSnova Backend 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. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package de.thm.arsnova.domain;
import de.thm.arsnova.dao.IDatabaseDao;
import de.thm.arsnova.entities.User;
import de.thm.arsnova.entities.transport.LearningProgressValues;
/**
* Calculates learning progress based on a question's value.
*/
public class PointBasedLearningProgress extends VariantLearningProgress {
public PointBasedLearningProgress(IDatabaseDao dao) {
super(dao);
}
@Override
protected LearningProgressValues createCourseProgress() {
LearningProgressValues lpv = new LearningProgressValues();
lpv.setCourseProgress(coursePercentage());
lpv.setNumQuestions(courseScore.getQuestionCount());
lpv.setNumUsers(courseScore.getTotalUserCount());
lpv.setNumerator(courseScore.getTotalUserScore() / courseScore.getTotalUserCount());
lpv.setDenominator(courseScore.getMaximumScore());
return lpv;
}
private int coursePercentage() {
final int courseMaximumValue = courseScore.getMaximumScore();
final int userTotalValue = courseScore.getTotalUserScore();
final int numUsers = courseScore.getTotalUserCount();
if (courseMaximumValue == 0 || numUsers == 0) {
return 0;
}
final double courseAverageValue = userTotalValue / numUsers;
final double courseProgress = courseAverageValue / courseMaximumValue;
return (int) Math.min(100, Math.round(courseProgress * 100));
}
@Override
protected LearningProgressValues createMyProgress(User user) {
LearningProgressValues lpv = new LearningProgressValues();
lpv.setCourseProgress(coursePercentage());
lpv.setNumQuestions(courseScore.getQuestionCount());
lpv.setNumUsers(courseScore.getTotalUserCount());
lpv.setMyProgress(myPercentage(user));
lpv.setNumerator((int) courseScore.getTotalUserScore(user));
lpv.setDenominator(courseScore.getMaximumScore());
return lpv;
}
private int myPercentage(User user) {
final int courseMaximumValue = courseScore.getMaximumScore();
final double userTotalValue = courseScore.getTotalUserScore(user);
if (courseMaximumValue == 0) {
return 0;
}
final double myProgress = userTotalValue / courseMaximumValue;
return (int) Math.min(100, Math.round(myProgress * 100));
}
}