Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rangeval.py « utils « mcf « modules « python « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd166dbebfb1f23ce7711bd994a00001cac59ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
''' Classes which match ranges, sets, or anything at all. '''
import dummy # provides storage functions as well as a few others

class BetwVal(dummy.Dummy):
	'''
	Matches any object greater than smaller and less than larger
	'''
	def __init__(self, first, second):
		if first <= second:
			dummy.Dummy.__init__(self, [first, second])
		else:
			dummy.Dummy.__init__(self, [second, first])
	def __getinitargs__(self):
		return (self._base[0], self._base[1])
	def __cmp__(self, object):
		'''The Guts of the Class, allows standard comparison operators'''
		if self._base[0]<=object:
			if self._base[1] >=object:
				return 0
			else: return 1
		else: return -1
	def __repr__(self):
		return '%s(%s,%s)'% (self.__class__.__name__,`self._base[0]`,`self._base[1]`)

class WInVal(dummy.Dummy):
	'''
	Matches any value in the sequential object used as initialiser
	Doesn't gracefully handle situations where not found, as it just
	returns a -1
	'''
	def __init__(self,seq):
		self._base = seq
	def __cmp__(self, object):
		''' Standard comparison operators '''
		for x in self._base:
			if x == object:
				return 0
		return -1
	def __repr__(self):
		return '%s(%s)'% (self.__class__.__name__,`self._base`)

class ExceptVal(WInVal):
	'''
	A negative Version of WInVal
	'''
	def __cmp__(self, object):
		for x in self._base:
			if x == object:
				return -1
		return 0

class AnyVal:
	'''
	Matches anything at all
	'''
	def __init__(self):
		pass
	def __getinitargs__(self):
		return ()
	def __cmp__(self, object):
		return 0
	def __repr__(self):
		return 'AnyVal()'