40 lines
1.0 KiB
Ruby
40 lines
1.0 KiB
Ruby
|
|
# TODO: Make variadic, such that we only need one method
|
|
def compare_to(sortings)
|
|
first, second, third = *sortings
|
|
|
|
def return_stat sorting
|
|
if sorting.type == "String"
|
|
{:ret => "this.#{sorting.variable}.compareTo(other.#{sorting.variable})"}
|
|
else
|
|
{:ret => sorting.comparator == ">" ? "this.#{sorting.variable} - other.#{sorting.variable}" : "other.#{sorting.variable} - this.#{sorting.variable}"}
|
|
end
|
|
end
|
|
|
|
def comp sorting
|
|
if sorting.type == "String"
|
|
{:if => "!this.#{sorting.variable}.equals(other.#{sorting.variable})",
|
|
:ret => (return_stat sorting)[:ret]}
|
|
else
|
|
{:if => "this.#{sorting.variable} != other.#{sorting.variable}",
|
|
:ret => (return_stat sorting)[:ret]}
|
|
end
|
|
end
|
|
|
|
|
|
pls = sortings.slice(1,sortings.length - 2).map do |ele|
|
|
" else if (#{(comp ele)[:if]}) {
|
|
return #{(comp ele)[:ret]};
|
|
}"
|
|
end
|
|
|
|
|
|
|
|
|
|
"if (#{(comp first)[:if]}) {
|
|
return #{(comp first)[:ret]};
|
|
}
|
|
#{pls.join "\n"}
|
|
return #{(comp sortings[sortings.length-1])[:ret]};"
|
|
|
|
end |