Uploaded currently unfinished Assessment Generator class for others to look at.
This commit is contained in:
parent
0b8d11f207
commit
bb41340481
3 changed files with 78 additions and 90 deletions
10
src/Welsh Vocabulary Tutor/.idea/libraries/junit.xml
generated
10
src/Welsh Vocabulary Tutor/.idea/libraries/junit.xml
generated
|
@ -1,10 +0,0 @@
|
|||
<component name="libraryTable">
|
||||
<library name="junit">
|
||||
<CLASSES>
|
||||
<root url="jar://$APPLICATION_HOME_DIR$/lib/junit.jar!/" />
|
||||
<root url="jar://$APPLICATION_HOME_DIR$/lib/junit-4.12.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
|
@ -1,17 +0,0 @@
|
|||
<component name="libraryTable">
|
||||
<library name="org.junit.jupiter:junit-jupiter:5.5.2" type="repository">
|
||||
<properties maven-id="org.junit.jupiter:junit-jupiter:5.5.2" />
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter/5.5.2/junit-jupiter-5.5.2.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-api/5.5.2/junit-jupiter-api-5.5.2.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-commons/1.5.2/junit-platform-commons-1.5.2.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-params/5.5.2/junit-jupiter-params-5.5.2.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-engine/5.5.2/junit-jupiter-engine-5.5.2.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-engine/1.5.2/junit-platform-engine-1.5.2.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
|
@ -13,85 +13,100 @@ import java.util.Random;
|
|||
* @See
|
||||
*/
|
||||
public class AssessmentGenerator extends Question {
|
||||
/**
|
||||
* Method that will generate a randomized list of questions consisting of random distribution of questions
|
||||
* types, using the dictionary’s practice words as the parameter.
|
||||
* @param wordList
|
||||
* @return
|
||||
*/
|
||||
public LinkedList<Question> generateAssessment(LinkedList<DictionaryEntry> wordList){
|
||||
LinkedList<Question> returnValue = new LinkedList<>();
|
||||
Random rand = new Random();
|
||||
|
||||
/**
|
||||
* Method that will generate a randomized list of questions consisting of random distribution of questions
|
||||
* types, using the dictionary’s practice words as the parameter.
|
||||
* @param wordList
|
||||
* @return
|
||||
*/
|
||||
public LinkedList<Question> generateAssessment(LinkedList<DictionaryEntry> wordList){
|
||||
return null;
|
||||
}
|
||||
int quizType = rand.nextInt(3);
|
||||
switch(quizType){
|
||||
case(0): //0 Means translation test.
|
||||
int wordToTranslatePlace = rand.nextInt(Application.practiseList.size());
|
||||
DictionaryEntry wordToTranslate = Application.practiseList.get(wordToTranslatePlace);
|
||||
|
||||
/**
|
||||
* Method
|
||||
* that will generate a list of questions that are the type ‘Match The Meanings’, using the dictionary's
|
||||
* practice words as the parameter.
|
||||
* @return
|
||||
*/
|
||||
public LinkedList<Question> generateWordMatch(LinkedList<DictionaryEntry> a){
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Method
|
||||
* that will generate a list of questions that are the type ‘6 Meanings’, using the dictionary's practice
|
||||
* words as the parameter.
|
||||
* @return
|
||||
*/
|
||||
public static void generateSixMeanings(LinkedList<DictionaryEntry> practiseList){
|
||||
|
||||
//CHANGE DICTIONARY TO PRACTISE LIST
|
||||
|
||||
Random rand = new Random();
|
||||
case(1): //1 Means six meanings test.
|
||||
|
||||
|
||||
boolean isDuplicate = false;
|
||||
case(2): //2 Means match meanings test.
|
||||
|
||||
do{
|
||||
int rand_q=rand.nextInt(Application.dictionary.size()-1);
|
||||
|
||||
DictionaryEntry pickedQuestion = Application.dictionary.get(rand_q);
|
||||
}
|
||||
|
||||
//If size of list is greater than 1 check for duplicates...
|
||||
if(MatchTheMeaningQuestion.setOfQuestions.size()>=1){
|
||||
}
|
||||
|
||||
for (DictionaryEntry setOfQuestion : MatchTheMeaningQuestion.setOfQuestions) {
|
||||
/**
|
||||
* Method
|
||||
* that will generate a list of questions that are the type ‘Match The Meanings’, using the dictionary's
|
||||
* practice words as the parameter.
|
||||
* @return
|
||||
*/
|
||||
public LinkedList<Question> generateWordMatch(LinkedList<DictionaryEntry> a){
|
||||
return null;
|
||||
|
||||
//If it is duplicate change isDuplicate to true and break
|
||||
if (setOfQuestion.equals(pickedQuestion)) {
|
||||
isDuplicate = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
/**
|
||||
* Method
|
||||
* that will generate a list of questions that are the type ‘6 Meanings’, using the dictionary's practice
|
||||
* words as the parameter.
|
||||
* @return
|
||||
*/
|
||||
public static void generateSixMeanings(LinkedList<DictionaryEntry> practiseList){
|
||||
|
||||
//If duplicate wasn't found add entry to the list
|
||||
if(!isDuplicate){
|
||||
MatchTheMeaningQuestion.setOfQuestions.add(pickedQuestion);
|
||||
}
|
||||
//CHANGE DICTIONARY TO PRACTISE LIST
|
||||
|
||||
Random rand = new Random();
|
||||
|
||||
|
||||
boolean isDuplicate = false;
|
||||
|
||||
do{
|
||||
int rand_q=rand.nextInt(Application.dictionary.size()-1);
|
||||
|
||||
DictionaryEntry pickedQuestion = Application.dictionary.get(rand_q);
|
||||
|
||||
//If size of list is greater than 1 check for duplicates...
|
||||
if(MatchTheMeaningQuestion.setOfQuestions.size()>=1){
|
||||
|
||||
for (DictionaryEntry setOfQuestion : MatchTheMeaningQuestion.setOfQuestions) {
|
||||
|
||||
//If it is duplicate change isDuplicate to true and break
|
||||
if (setOfQuestion.equals(pickedQuestion)) {
|
||||
isDuplicate = true;
|
||||
break;
|
||||
}
|
||||
|
||||
//... otherwise, add entry to the
|
||||
}else{
|
||||
MatchTheMeaningQuestion.setOfQuestions.add(pickedQuestion);
|
||||
}
|
||||
|
||||
isDuplicate =false;
|
||||
//If duplicate wasn't found add entry to the list
|
||||
if(!isDuplicate){
|
||||
MatchTheMeaningQuestion.setOfQuestions.add(pickedQuestion);
|
||||
}
|
||||
|
||||
}while(MatchTheMeaningQuestion.setOfQuestions.size()<5);
|
||||
}
|
||||
//... otherwise, add entry to the
|
||||
}else{
|
||||
MatchTheMeaningQuestion.setOfQuestions.add(pickedQuestion);
|
||||
}
|
||||
|
||||
/**
|
||||
* Method that
|
||||
* will generate a list of questions that are the type ‘Translation’, using the dictionary's practice words as
|
||||
* the parameter.
|
||||
* @return
|
||||
*/
|
||||
public LinkedList<Question> generateWordEnter(LinkedList<DictionaryEntry> a){
|
||||
return null;
|
||||
}
|
||||
isDuplicate =false;
|
||||
|
||||
}while(MatchTheMeaningQuestion.setOfQuestions.size()<5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Method that
|
||||
* will generate a list of questions that are the type ‘Translation’, using the dictionary's practice words as
|
||||
* the parameter.
|
||||
* @return
|
||||
*/
|
||||
public LinkedList<Question> generateWordEnter(LinkedList<DictionaryEntry> a){
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue