Package org.olat.ims.qti.navigator

Source Code of org.olat.ims.qti.navigator.SequentialItemNavigator

/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing,<br>
* software distributed under the License is distributed on an "AS IS" BASIS, <br>
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
* See the License for the specific language governing permissions and <br>
* limitations under the License.
* <p>
* Copyright (c) since 2004 at Multimedia- & E-Learning Services (MELS),<br>
* University of Zurich, Switzerland.
* <p>
*/

package org.olat.ims.qti.navigator;

import java.io.Serializable;

import org.olat.ims.qti.QTIConstants;
import org.olat.ims.qti.container.AssessmentContext;
import org.olat.ims.qti.container.ItemContext;
import org.olat.ims.qti.container.ItemsInput;
import org.olat.ims.qti.container.Output;
import org.olat.ims.qti.container.SectionContext;
import org.olat.ims.qti.process.AssessmentInstance;

/**
* Navigator used for the cases: <br>
* 1. Navigation (via Menu) not visible, one question per page <br>
* 2. Navigation visible but disabled, one question per page <br>
*
* @author Felix Jost
*/
public class SequentialItemNavigator extends DefaultNavigator implements Navigator, Serializable {

  /**
   *
   *
   */
  public void Navigator() {
  //
  }

  /**
   * @param assessmentInstance
   */
  public SequentialItemNavigator(AssessmentInstance assessmentInstance) {
    super(assessmentInstance);
  }

  /**
   * starts the assessment: assuming we have at least one section with at least
   * one item
   */
  public void startAssessment() {
    AssessmentContext ac = getAssessmentContext();
    ac.setCurrentSectionContextPos(0);
    ac.getCurrentSectionContext().setCurrentItemContextPos(0);
    // start assessment, section, and item
    getAssessmentInstance().start();
    ac.getCurrentSectionContext().start();
    ac.getCurrentSectionContext().getCurrentItemContext().start();
    getInfo().setStatus(QTIConstants.ASSESSMENT_RUNNING);
    if (!ac.isOpen()) {
      getInfo().setError(QTIConstants.ERROR_ASSESSMENT_OUTOFTIME);
      getInfo().setRenderItems(false);
    } else {     
      getInfo().setMessage(QTIConstants.MESSAGE_ASSESSMENT_INFODEMANDED); //show test title and description first
      getInfo().setRenderItems(false); // do not show items as first step           
    }
    getAssessmentInstance().persist();
  }

  /**
   * @see org.olat.ims.qti.navigator.Navigator#submitItems(org.olat.ims.qti.container.ItemsInput)
   */
  public void submitItems(ItemsInput curitsinp) {
    clearInfo();
    AssessmentContext ac = getAssessmentContext();
    SectionContext sc = ac.getCurrentSectionContext();
    int st = submitOneItem(curitsinp);
    if (st != QTIConstants.ITEM_SUBMITTED) {
      // time expired or too many attempts-> display a message above the next
      // item or assessment-finished-text
      if (st == QTIConstants.ERROR_SUBMITTEDITEM_TOOMANYATTEMPTS) {
        throw new RuntimeException("import check failed: there was a maxattempts in a item, but mode is sequential/item");
      } else if (st == QTIConstants.ERROR_ASSESSMENT_OUTOFTIME) {
        getInfo().setError(st);
        getInfo().setRenderItems(false);
      } else if (st == QTIConstants.ERROR_SUBMITTEDITEM_OUTOFTIME) {
        getInfo().setError(st);
        getInfo().setRenderItems(true); // still continue to next item
      }
    } else { // ok, display feedback
      ItemContext itc = getAssessmentContext().getCurrentSectionContext().getCurrentItemContext();
      Output outp = itc.getOutput();
      if (outp != null) getInfo().setCurrentOutput(outp);
      // check on item feedback
      if (itc.isFeedback()) { // feedback allowed
        getInfo().setFeedback(itc.getOutput().hasItem_Responses());
      }
      getInfo().setMessage(QTIConstants.MESSAGE_ITEM_SUBMITTED);
      getInfo().setRenderItems(true);
    }

    // find next item
    int itpos = sc.getCurrentItemContextPos();
    if (itpos < sc.getItemContextCount() - 1 && sc.isOpen()) {
      //there are still further items in the current section
      sc.setCurrentItemContextPos(++itpos);
      sc.getCurrentItemContext().start();
    } else { // fetch next section     
      if (!sc.isOpen()) {
        getInfo().setError(QTIConstants.ERROR_SECTION_OUTOFTIME);
        getInfo().setRenderItems(true);
      }
      ac.getCurrentSectionContext().sectionWasSubmitted();

      int secPos = ac.getCurrentSectionContextPos();
      int secPosMax = ac.getSectionContextCount() - 1;

      if (!ac.isOpen()) {
        getInfo().setError(QTIConstants.ERROR_ASSESSMENT_OUTOFTIME);
        getInfo().setRenderItems(false);
        submitAssessment();
      } else if (secPos == secPosMax) submitAssessment();
      else {
        while (secPos < secPosMax) { // there are still further section(s)
          secPos++;
          if (ac.getSectionContext(secPos).getItemContextCount() != 0) break;
        }

        if (secPos == secPosMax && ac.getSectionContext(secPos).getItemContextCount() == 0) {
          // reached last section but section is empty -> finish assessment
          submitAssessment();
        } else {
          ac.setCurrentSectionContextPos(secPos);
          ac.getCurrentSectionContext().setCurrentItemContextPos(0);
          ac.getCurrentSectionContext().start();
          ac.getCurrentSectionContext().getCurrentItemContext().start();
                   
          getInfo().setRenderItems(false);//since new section starts, show next the section title and description
        }
      }
    }
    getAssessmentInstance().persist();
  }

  /**
   * @see org.olat.ims.qti.navigator.Navigator#goToItem(int, int)
   */
  public void goToItem(int sectionPos, int itemPos) {     
    AssessmentContext ac = getAssessmentContext();
    ac.setCurrentSectionContextPos(sectionPos);
    SectionContext sc = ac.getCurrentSectionContext();
    sc.setCurrentItemContextPos(itemPos);
    getInfo().setRenderItems(true);
    getInfo().setMessage(QTIConstants.MESSAGE_NONE);
  }

  /**
   * @see org.olat.ims.qti.navigator.Navigator#goToSection(int)
   */
  public void goToSection(int sectionPos) {   
    AssessmentContext ac = getAssessmentContext();
    ac.setCurrentSectionContextPos(sectionPos);
    getInfo().setMessage(QTIConstants.MESSAGE_SECTION_INFODEMANDED);
  }

}
TOP

Related Classes of org.olat.ims.qti.navigator.SequentialItemNavigator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.