The pseudo code does not define how to select the appropriate Objective Rollup Process in [RB.1.5].
Instead, section 4.6.5. of the SN book states how to do that.
Here is a summary of the section, translated into Ruby pseudo code:
if activity.rolled_up_objective.objective_satisfied_by_measure == true
apply_objective_rollup_process_using_measure
elsif activity.rollup_rules.any? { |rollup_rule| [:satisfied, :not_satisfied].include?(rollup_rule.action) }
apply_objective_rollup_process_using_rules
else
apply_objective_rollup_process_using_default_rules
end
In the version 1.1 of SCORM 2004 4th Edition,
both Objective Rollup Process Using Rules
and Objective Rollup Process Using Default Rules are included into [RB.1.2 b],
so line 3.2. of [RB.1.5],
Apply the appropriate Objective Rollup Process to the activity
should be:
For each objective associated with the activity
If Objective Contributes to Rollup for the objective is True Then
Set the rolled-up objective to the objective
Break For
End If
End For
If (the rolled-up objective is Defined) And (Objective Satisfied By Measure for the rolled-up objective is True)
Apply the Objective Rollup Using Measure Process [RB.1.2 a] to the activity
Else
Apply the Objective Rollup Using Rules Process [RB.1.2 b] to the activity
End