Moved SemanticVersion class to semver file from generic `helpers file
This commit is contained in:
@@ -11,7 +11,8 @@ from .properties import PSA_PG_export, PSA_PG_export_action_list_item, filter_se
|
|||||||
get_sequences_from_name_and_frame_range
|
get_sequences_from_name_and_frame_range
|
||||||
from ..builder import build_psa, PsaBuildSequence, PsaBuildOptions
|
from ..builder import build_psa, PsaBuildSequence, PsaBuildOptions
|
||||||
from ..writer import write_psa
|
from ..writer import write_psa
|
||||||
from ...shared.helpers import populate_bone_collection_list, get_nla_strips_in_frame_range, SemanticVersion
|
from ...shared.helpers import populate_bone_collection_list, get_nla_strips_in_frame_range
|
||||||
|
from ...shared.semver import SemanticVersion
|
||||||
from ...shared.ui import draw_bone_filter_mode
|
from ...shared.ui import draw_bone_filter_mode
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
from typing import List, Iterable, cast, Tuple
|
from typing import List, Iterable, cast, Optional
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
from bpy.props import CollectionProperty
|
from bpy.props import CollectionProperty
|
||||||
@@ -159,60 +159,6 @@ def is_bdk_addon_loaded() -> bool:
|
|||||||
return 'bdk' in dir(bpy.ops)
|
return 'bdk' in dir(bpy.ops)
|
||||||
|
|
||||||
|
|
||||||
class SemanticVersion(object):
|
|
||||||
def __init__(self, version: Tuple[int, int, int]):
|
|
||||||
self.major, self.minor, self.patch = version
|
|
||||||
|
|
||||||
def __iter__(self):
|
|
||||||
yield self.major
|
|
||||||
yield self.minor
|
|
||||||
yield self.patch
|
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def compare(lhs: 'SemanticVersion', rhs: 'SemanticVersion') -> int:
|
|
||||||
"""
|
|
||||||
Compares two semantic versions.
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
-1 if lhs < rhs
|
|
||||||
0 if lhs == rhs
|
|
||||||
1 if lhs > rhs
|
|
||||||
"""
|
|
||||||
for l, r in zip(lhs, rhs):
|
|
||||||
if l < r:
|
|
||||||
return -1
|
|
||||||
if l > r:
|
|
||||||
return 1
|
|
||||||
return 0
|
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return f'{self.major}.{self.minor}.{self.patch}'
|
|
||||||
|
|
||||||
def __repr__(self):
|
|
||||||
return str(self)
|
|
||||||
|
|
||||||
def __eq__(self, other):
|
|
||||||
return self.compare(self, other) == 0
|
|
||||||
|
|
||||||
def __ne__(self, other):
|
|
||||||
return not self == other
|
|
||||||
|
|
||||||
def __lt__(self, other):
|
|
||||||
return self.compare(self, other) == -1
|
|
||||||
|
|
||||||
def __le__(self, other):
|
|
||||||
return self.compare(self, other) <= 0
|
|
||||||
|
|
||||||
def __gt__(self, other):
|
|
||||||
return self.compare(self, other) == 1
|
|
||||||
|
|
||||||
def __ge__(self, other):
|
|
||||||
return self.compare(self, other) >= 0
|
|
||||||
|
|
||||||
def __hash__(self):
|
|
||||||
return hash((self.major, self.minor, self.patch))
|
|
||||||
|
|
||||||
|
|
||||||
def convert_blender_bones_to_psx_bones(
|
def convert_blender_bones_to_psx_bones(
|
||||||
bones: List[bpy.types.Bone],
|
bones: List[bpy.types.Bone],
|
||||||
bone_class: type,
|
bone_class: type,
|
||||||
|
|||||||
54
io_scene_psk_psa/shared/semver.py
Normal file
54
io_scene_psk_psa/shared/semver.py
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
from typing import Tuple
|
||||||
|
|
||||||
|
class SemanticVersion(object):
|
||||||
|
def __init__(self, version: Tuple[int, int, int]):
|
||||||
|
self.major, self.minor, self.patch = version
|
||||||
|
|
||||||
|
def __iter__(self):
|
||||||
|
yield self.major
|
||||||
|
yield self.minor
|
||||||
|
yield self.patch
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def compare(lhs: 'SemanticVersion', rhs: 'SemanticVersion') -> int:
|
||||||
|
"""
|
||||||
|
Compares two semantic versions.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
-1 if lhs < rhs
|
||||||
|
0 if lhs == rhs
|
||||||
|
1 if lhs > rhs
|
||||||
|
"""
|
||||||
|
for l, r in zip(lhs, rhs):
|
||||||
|
if l < r:
|
||||||
|
return -1
|
||||||
|
if l > r:
|
||||||
|
return 1
|
||||||
|
return 0
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return f'{self.major}.{self.minor}.{self.patch}'
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
return str(self)
|
||||||
|
|
||||||
|
def __eq__(self, other):
|
||||||
|
return self.compare(self, other) == 0
|
||||||
|
|
||||||
|
def __ne__(self, other):
|
||||||
|
return not self == other
|
||||||
|
|
||||||
|
def __lt__(self, other):
|
||||||
|
return self.compare(self, other) == -1
|
||||||
|
|
||||||
|
def __le__(self, other):
|
||||||
|
return self.compare(self, other) <= 0
|
||||||
|
|
||||||
|
def __gt__(self, other):
|
||||||
|
return self.compare(self, other) == 1
|
||||||
|
|
||||||
|
def __ge__(self, other):
|
||||||
|
return self.compare(self, other) >= 0
|
||||||
|
|
||||||
|
def __hash__(self):
|
||||||
|
return hash((self.major, self.minor, self.patch))
|
||||||
Reference in New Issue
Block a user