Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
Software
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
7
Issues
7
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
avatar-ensignes
Software
Commits
a96eca4f
Commit
a96eca4f
authored
Mar 07, 2019
by
adud
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of gitlab.aliens-lyon.fr:avatar-ensignes/software
parents
a59bfed5
aee4f0fb
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
215 additions
and
113 deletions
+215
-113
user-interface/.gitignore
user-interface/.gitignore
+1
-1
user-interface/Main.tscn
user-interface/Main.tscn
+6
-1
user-interface/resources/global-variables/signVar.gd
user-interface/resources/global-variables/signVar.gd
+189
-99
user-interface/resources/signs-dictionary/Bonjour.yaml
user-interface/resources/signs-dictionary/Bonjour.yaml
+6
-9
user-interface/scene-tree/sign/hand-state/location/chest.gd
user-interface/scene-tree/sign/hand-state/location/chest.gd
+12
-2
user-interface/scene-tree/sign/hand-state/shape/shape.tscn
user-interface/scene-tree/sign/hand-state/shape/shape.tscn
+1
-1
No files found.
user-interface/.gitignore
View file @
a96eca4f
.import/
*
.import/
*.import
user-interface/Main.tscn
View file @
a96eca4f
[gd_scene load_steps=
2
format=2]
[gd_scene load_steps=
3
format=2]
[ext_resource path="res://scene-tree/sign/sign.tscn" type="PackedScene" id=1]
[ext_resource path="res://Node.gd" type="Script" id=2]
[node name="Main" type="Node" index="0"]
[node name="sign" parent="." index="0" instance=ExtResource( 1 )]
[node name="Node" type="Node" parent="." index="1"]
script = ExtResource( 2 )
user-interface/resources/global-variables/signVar.gd
View file @
a96eca4f
This diff is collapsed.
Click to expand it.
user-interface/resources/signs-dictionary/Bonjour.yaml
View file @
a96eca4f
...
...
@@ -23,12 +23,9 @@ InitialState:
FinalState
:
NDH
:
~
DH
:
shape
:
B
shape
:
~
Orientation
:
palm
:
r
:
0
f
:
-1
u
:
0
palm
:
~
fingertips
:
r
:
-1
f
:
0
...
...
@@ -38,8 +35,8 @@ FinalState:
place
:
chest
distance
:
1
Move
:
trajectory
:
straight
INNER_repetition
:
1
OUTER_repetition
:
1
trajectory
:
~
INNER_repetition
:
~
OUTER_repetition
:
~
Face
:
~
shoulders
:
~
\ No newline at end of file
shoulders
:
~
user-interface/scene-tree/sign/hand-state/location/chest.gd
View file @
a96eca4f
...
...
@@ -3,8 +3,18 @@ extends WindowDialog
var
point
var
place
export
(
bool
)
var
displayed
const
NAMES
=
[
"neck"
,
"jugular"
,
"sternum"
,
"right clavicle"
,
"left clavicle"
,
"right breast"
,
"left breast"
,
"right armpit"
,
"left armpit"
,
"right inner elbow"
,
"left inner elbow"
,
"right arm"
,
"left arm"
,
"stomach"
,
"right kidney"
,
"left kidney"
,
"belly"
,
"right hip"
,
"left hip"
]
const
LOCS
=
[
Vector2
(
351
,
63
),
Vector2
(
350
,
164
),
Vector2
(
345
,
245
),
Vector2
(
224
,
209
),
Vector2
(
468
,
199
),
Vector2
(
250
,
284
),
Vector2
(
449
,
286
),
Vector2
(
185
,
273
),
Vector2
(
514
,
272
),
Vector2
(
133
,
417
),
Vector2
(
558
,
410
),
Vector2
(
134
,
311
),
Vector2
(
556
,
305
),
Vector2
(
348
,
402
),
Vector2
(
257
,
480
),
Vector2
(
439
,
477
),
Vector2
(
347
,
505
),
Vector2
(
178
,
561
),
Vector2
(
514
,
559
)]
const
NAMES
=
[
"neck"
,
"jugular"
,
"sternum"
,
"right clavicle"
,
"left clavicle"
,
"right breast"
,
"left breast"
,
"right armpit"
,
"left armpit"
,
"right inner elbow"
,
"left inner elbow"
,
"right arm"
,
"left arm"
,
"stomach"
,
"right kidney"
,
"left kidney"
,
"belly"
,
"right hip"
,
"left hip"
]
const
LOCS
=
[
Vector2
(
351
,
63
),
Vector2
(
350
,
164
),
Vector2
(
345
,
245
),
Vector2
(
224
,
209
),
Vector2
(
468
,
199
),
Vector2
(
250
,
284
),
Vector2
(
449
,
286
),
Vector2
(
185
,
273
),
Vector2
(
514
,
272
),
Vector2
(
133
,
417
),
Vector2
(
558
,
410
),
Vector2
(
134
,
311
),
Vector2
(
556
,
305
),
Vector2
(
348
,
402
),
Vector2
(
257
,
480
),
Vector2
(
439
,
477
),
Vector2
(
347
,
505
),
Vector2
(
178
,
561
),
Vector2
(
514
,
559
)]
var
n
=
len
(
NAMES
)
func
_ready
():
...
...
user-interface/scene-tree/sign/hand-state/shape/shape.tscn
View file @
a96eca4f
...
...
@@ -3,7 +3,7 @@
[ext_resource path="res://scene-tree/sign/hand-state/shape/shape.gd" type="Script" id=1]
[ext_resource path="res://resources/pictures/signs.jpg" type="Texture" id=2]
[node name="shape" type="Control"]
[node name="shape" type="Control"
index="0"
]
anchor_left = 0.0
anchor_top = 0.0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment