forked from Vector35/binaryninja-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhighlight.py
134 lines (124 loc) · 5.4 KB
/
highlight.py
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Copyright (c) 2015-2024 Vector 35 Inc
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Binary Ninja components
from . import _binaryninjacore as core
from .enums import HighlightColorStyle, HighlightStandardColor
from dataclasses import dataclass
from typing import Optional
@dataclass
class HighlightColor:
color: Optional[HighlightStandardColor] = None
mix_color: Optional[HighlightStandardColor] = None
mix: Optional[int] = None
red: Optional[int] = None
green: Optional[int] = None
blue: Optional[int] = None
alpha: int = 255
def __init__(self, color=None, mix_color=None, mix=None, red=None, green=None, blue=None, alpha=255):
self.alpha = alpha
self._style : Optional[HighlightColorStyle] = None
if (red is not None) and (green is not None) and (blue is not None):
self._style = HighlightColorStyle.CustomHighlightColor
self.red = red
self.green = green
self.blue = blue
elif (mix_color is not None) and (mix is not None):
self.style = HighlightColorStyle.MixedHighlightColor
if color is None:
self.color = HighlightStandardColor.NoHighlightColor
else:
self.color = color
self.mix_color = mix_color
self.mix = mix
else:
self._style = HighlightColorStyle.StandardHighlightColor
if color is None:
self.color = HighlightStandardColor.NoHighlightColor
else:
self.color = color
@property
def style(self) -> Optional[HighlightColorStyle]:
return self._style
def _standard_color_to_str(self, color: Optional[HighlightStandardColor]) -> str:
if color == HighlightStandardColor.NoHighlightColor:
return "none"
if color == HighlightStandardColor.BlueHighlightColor:
return "blue"
if color == HighlightStandardColor.GreenHighlightColor:
return "green"
if color == HighlightStandardColor.CyanHighlightColor:
return "cyan"
if color == HighlightStandardColor.RedHighlightColor:
return "red"
if color == HighlightStandardColor.MagentaHighlightColor:
return "magenta"
if color == HighlightStandardColor.YellowHighlightColor:
return "yellow"
if color == HighlightStandardColor.OrangeHighlightColor:
return "orange"
if color == HighlightStandardColor.WhiteHighlightColor:
return "white"
if color == HighlightStandardColor.BlackHighlightColor:
return "black"
return f"{color}"
def __repr__(self):
if self.style == HighlightColorStyle.StandardHighlightColor:
if self.alpha == 255:
return f"<color: {self._standard_color_to_str(self.color)}>"
return f"<color: {self._standard_color_to_str(self.color)}, alpha {self.alpha}>"
if self.style == HighlightColorStyle.MixedHighlightColor:
if self.alpha == 255:
return f"<color: mix {self._standard_color_to_str(self.color)} to {self._standard_color_to_str(self.mix_color)} factor {self.mix}>"
return f"<color: mix {self._standard_color_to_str(self.color)} to {self._standard_color_to_str(self.mix_color)} factor {self.mix}, alpha {self.alpha}>"
if self.style == HighlightColorStyle.CustomHighlightColor:
if self.alpha == 255:
return f"<color: #{self.red:02x}{self.green:02x}{self.blue:02x}>"
return f"<color: #{self.red:02x}{self.green:02x}{self.blue:02x}, alpha {self.alpha}>"
return "<color>"
def _to_core_struct(self) -> core.BNHighlightColor:
result = core.BNHighlightColor()
result.style = self.style
result.color = HighlightStandardColor.NoHighlightColor
result.mix_color = HighlightStandardColor.NoHighlightColor
result.mix = 0
result.r = 0
result.g = 0
result.b = 0
result.alpha = self.alpha
if self.style == HighlightColorStyle.StandardHighlightColor:
result.color = self.color
elif self.style == HighlightColorStyle.MixedHighlightColor:
result.color = self.color
result.mixColor = self.mix_color
result.mix = self.mix
elif self.style == HighlightColorStyle.CustomHighlightColor:
result.r = self.red
result.g = self.green
result.b = self.blue
return result
@staticmethod
def _from_core_struct(color: core.BNHighlightColor) -> 'HighlightColor':
if color.style == HighlightColorStyle.StandardHighlightColor:
return HighlightColor(color=color.color, alpha=color.alpha)
elif color.style == HighlightColorStyle.MixedHighlightColor:
return HighlightColor(color=color.color, mix_color=color.mixColor, mix=color.mix, alpha=color.alpha)
elif color.style == HighlightColorStyle.CustomHighlightColor:
return HighlightColor(red=color.r, green=color.g, blue=color.b, alpha=color.alpha)
return HighlightColor(color=HighlightStandardColor.NoHighlightColor)