Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Commits
0f8c05de
Commit
0f8c05de
authored
2 years ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Improve signal drawing
parent
9b136a14
No related branches found
No related tags found
1 merge request
!81
Improve signal drawing
Pipeline
#74828
passed
2 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
b_asic/scheduler_gui/graphics_graph_item.py
+3
-3
3 additions, 3 deletions
b_asic/scheduler_gui/graphics_graph_item.py
b_asic/scheduler_gui/graphics_signal.py
+18
-8
18 additions, 8 deletions
b_asic/scheduler_gui/graphics_signal.py
with
21 additions
and
11 deletions
b_asic/scheduler_gui/graphics_graph_item.py
+
3
−
3
View file @
0f8c05de
...
@@ -34,7 +34,7 @@ class GraphicsGraphItem(GraphicsGraphEvent, QGraphicsItemGroup): # PySide2 /
...
@@ -34,7 +34,7 @@ class GraphicsGraphItem(GraphicsGraphEvent, QGraphicsItemGroup): # PySide2 /
_components_height
:
float
_components_height
:
float
_x_axis_indent
:
float
_x_axis_indent
:
float
_event_items
:
List
[
QGraphicsItem
]
_event_items
:
List
[
QGraphicsItem
]
_signal_dict
:
Dict
[
GraphicsComponentItem
,
Set
[
GraphicsSignal
]]
_signal_dict
:
Dict
[
GraphicsComponentItem
,
Set
[
GraphicsSignal
]]
def
__init__
(
self
,
schedule
:
Schedule
,
parent
:
Optional
[
QGraphicsItem
]
=
None
):
def
__init__
(
self
,
schedule
:
Schedule
,
parent
:
Optional
[
QGraphicsItem
]
=
None
):
...
@@ -152,7 +152,7 @@ class GraphicsGraphItem(GraphicsGraphEvent, QGraphicsItemGroup): # PySide2 /
...
@@ -152,7 +152,7 @@ class GraphicsGraphItem(GraphicsGraphEvent, QGraphicsItemGroup): # PySide2 /
# if not isinstance(op, (Input, Output)):
# if not isinstance(op, (Input, Output)):
self
.
_components_height
+=
spacing
self
.
_components_height
+=
spacing
component
=
GraphicsComponentItem
(
operation
)
component
=
GraphicsComponentItem
(
operation
,
parent
=
self
)
component
.
setPos
(
self
.
_x_axis_indent
+
op_start_time
,
self
.
_components_height
)
component
.
setPos
(
self
.
_x_axis_indent
+
op_start_time
,
self
.
_components_height
)
self
.
_components
.
append
(
component
)
self
.
_components
.
append
(
component
)
_components_dict
[
operation
]
=
component
_components_dict
[
operation
]
=
component
...
@@ -179,7 +179,7 @@ class GraphicsGraphItem(GraphicsGraphEvent, QGraphicsItemGroup): # PySide2 /
...
@@ -179,7 +179,7 @@ class GraphicsGraphItem(GraphicsGraphEvent, QGraphicsItemGroup): # PySide2 /
for
output_port
in
component
.
operation
.
outputs
:
for
output_port
in
component
.
operation
.
outputs
:
for
signal
in
output_port
.
signals
:
for
signal
in
output_port
.
signals
:
dest_component
=
_components_dict
[
signal
.
destination
.
operation
]
dest_component
=
_components_dict
[
signal
.
destination
.
operation
]
gui_signal
=
GraphicsSignal
(
component
,
dest_component
,
signal
)
gui_signal
=
GraphicsSignal
(
component
,
dest_component
,
signal
,
parent
=
self
)
self
.
addToGroup
(
gui_signal
)
self
.
addToGroup
(
gui_signal
)
self
.
_signal_dict
[
component
].
add
(
gui_signal
)
self
.
_signal_dict
[
component
].
add
(
gui_signal
)
self
.
_signal_dict
[
dest_component
].
add
(
gui_signal
)
self
.
_signal_dict
[
dest_component
].
add
(
gui_signal
)
...
...
This diff is collapsed.
Click to expand it.
b_asic/scheduler_gui/graphics_signal.py
+
18
−
8
View file @
0f8c05de
...
@@ -7,7 +7,8 @@ from qtpy.QtCore import QPointF
...
@@ -7,7 +7,8 @@ from qtpy.QtCore import QPointF
# B-ASIC
# B-ASIC
from
b_asic.signal
import
Signal
from
b_asic.signal
import
Signal
from
b_asic.scheduler_gui.graphics_component_item
import
GraphicsComponentItem
from
b_asic.scheduler_gui.graphics_component_item
import
GraphicsComponentItem
from
b_asic.scheduler_gui._preferences
import
SIGNAL_ACTIVE
,
SIGNAL_INACTIVE
,
SIGNAL_WIDTH
from
b_asic.scheduler_gui._preferences
import
(
SIGNAL_ACTIVE
,
SIGNAL_INACTIVE
,
SIGNAL_WIDTH
)
class
GraphicsSignal
(
QGraphicsPathItem
):
class
GraphicsSignal
(
QGraphicsPathItem
):
_path
:
Optional
[
QPainterPath
]
=
None
_path
:
Optional
[
QPainterPath
]
=
None
...
@@ -44,15 +45,24 @@ class GraphicsSignal(QGraphicsPathItem):
...
@@ -44,15 +45,24 @@ class GraphicsSignal(QGraphicsPathItem):
source_y
=
source_point
.
y
()
source_y
=
source_point
.
y
()
dest_x
=
dest_point
.
x
()
dest_x
=
dest_point
.
x
()
dest_y
=
dest_point
.
y
()
dest_y
=
dest_point
.
y
()
if
abs
(
source_x
-
dest_x
)
<=
0.1
:
if
(
dest_x
-
source_x
<=
-
0.1
or
ctrl_point1
=
QPointF
(
source_x
+
0.5
,
source_y
)
self
.
parentItem
().
schedule
.
_laps
[
self
.
_signal
.
graph_id
]):
ctrl_point2
=
QPointF
(
source_x
-
0.5
,
dest_y
)
offset
=
0.2
# TODO: Get from parent/axes...
laps
=
self
.
parentItem
().
schedule
.
_laps
[
self
.
_signal
.
graph_id
]
path
.
lineTo
(
self
.
parentItem
().
schedule
.
schedule_time
+
offset
,
source_y
)
path
.
moveTo
(
0
+
offset
,
dest_y
)
path
.
lineTo
(
dest_x
,
dest_y
)
else
:
else
:
mid_x
=
(
source_x
+
dest_x
)
/
2
if
abs
(
source_x
-
dest_x
)
<=
0.1
:
# "== 0"
ctrl_point1
=
QPointF
(
mid_x
,
source_y
)
ctrl_point1
=
QPointF
(
source_x
+
0.5
,
source_y
)
ctrl_point2
=
QPointF
(
mid_x
,
dest_y
)
ctrl_point2
=
QPointF
(
source_x
-
0.5
,
dest_y
)
else
:
mid_x
=
(
source_x
+
dest_x
)
/
2
ctrl_point1
=
QPointF
(
mid_x
,
source_y
)
ctrl_point2
=
QPointF
(
mid_x
,
dest_y
)
path
.
cubicTo
(
ctrl_point1
,
ctrl_point2
,
dest_point
)
path
.
cubicTo
(
ctrl_point1
,
ctrl_point2
,
dest_point
)
self
.
setPath
(
path
)
self
.
setPath
(
path
)
def
refresh_pens
(
self
):
def
refresh_pens
(
self
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment