Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MetroSim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Pillis
MetroSim
Commits
08e13ecb
Commit
08e13ecb
authored
1 year ago
by
julienpillis
Browse files
Options
Downloads
Patches
Plain Diff
suppression calcul chemin à chaque action
parent
47975acd
No related branches found
No related tags found
2 merge requests
!7
Main
,
!6
Signalisation
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
cmd/simu/main.go
+1
-1
1 addition, 1 deletion
cmd/simu/main.go
internal/simulation/agent.go
+21
-11
21 additions, 11 deletions
internal/simulation/agent.go
internal/simulation/env.go
+4
-0
4 additions, 0 deletions
internal/simulation/env.go
internal/simulation/simu.go
+1
-1
1 addition, 1 deletion
internal/simulation/simu.go
with
27 additions
and
13 deletions
cmd/simu/main.go
+
1
−
1
View file @
08e13ecb
...
...
@@ -6,7 +6,7 @@ import (
)
func
main
()
{
s
:=
simulation
.
NewSimulation
(
1
,
-
1
,
600
*
time
.
Second
)
s
:=
simulation
.
NewSimulation
(
2
,
-
1
,
600
*
time
.
Second
)
//go simulation.StartAPI(s)
s
.
Run
()
}
This diff is collapsed.
Click to expand it.
internal/simulation/agent.go
+
21
−
11
View file @
08e13ecb
...
...
@@ -14,7 +14,7 @@ import (
"math/rand"
alg
"metrosim/internal/algorithms"
"time"
"fmt"
//
"fmt"
)
type
Action
int64
...
...
@@ -46,6 +46,7 @@ type Agent struct {
width
int
height
int
orientation
int
path
[]
alg
.
Node
}
type
Behavior
interface
{
...
...
@@ -57,7 +58,7 @@ type Behavior interface {
func
NewAgent
(
id
string
,
env
*
Environment
,
syncChan
chan
int
,
vitesse
time
.
Duration
,
force
int
,
politesse
bool
,
behavior
Behavior
,
departure
,
destination
Coord
,
width
,
height
int
)
*
Agent
{
isOn
:=
make
(
map
[
Coord
]
string
)
saveCells
(
&
env
.
station
,
isOn
,
departure
,
width
,
height
,
0
)
return
&
Agent
{
AgentID
(
id
),
vitesse
,
force
,
politesse
,
departure
,
departure
,
destination
,
behavior
,
env
,
syncChan
,
Noop
,
isOn
,
false
,
width
,
height
,
0
}
return
&
Agent
{
AgentID
(
id
),
vitesse
,
force
,
politesse
,
departure
,
departure
,
destination
,
behavior
,
env
,
syncChan
,
Noop
,
isOn
,
false
,
width
,
height
,
0
,
make
([]
alg
.
Node
,
0
)
}
}
func
(
ag
*
Agent
)
ID
()
AgentID
{
...
...
@@ -179,23 +180,32 @@ func (ag *Agent) MoveAgent() {
start
:=
*
alg
.
NewNode
(
ag
.
position
[
0
],
ag
.
position
[
1
],
0
,
0
,
ag
.
width
,
ag
.
height
)
end
:=
*
alg
.
NewNode
(
ag
.
destination
[
0
],
ag
.
destination
[
1
],
0
,
0
,
ag
.
width
,
ag
.
height
)
// ================== Tentative de calcul du chemin =======================
timea
:=
time
.
Now
()
path
:=
alg
.
FindPath
(
ag
.
env
.
station
,
start
,
end
,
*
alg
.
NewNode
(
-
1
,
-
1
,
0
,
0
,
0
,
0
))
fmt
.
Println
(
time
.
Since
(
timea
))
if
len
(
ag
.
path
)
==
0
{
// Recherche d'un chemin si inexistant
path
:=
alg
.
FindPath
(
ag
.
env
.
station
,
start
,
end
,
*
alg
.
NewNode
(
-
1
,
-
1
,
0
,
0
,
0
,
0
))
ag
.
path
=
path
}
// ================== Etude de faisabilité =======================
// fmt.Println(ag.position,path[0])
if
IsAgentBlocking
(
path
,
ag
,
ag
.
env
)
{
if
IsAgentBlocking
(
ag
.
path
,
ag
,
ag
.
env
)
{
// Si un agent bloque notre déplacement, on attend un temps aléatoire, et reconstruit un chemin en évitant la position
time
.
Sleep
(
time
.
Duration
(
rand
.
Intn
(
1000
))
*
time
.
Millisecond
)
path
=
alg
.
FindPath
(
ag
.
env
.
station
,
start
,
end
,
path
[
0
])
path
:
=
alg
.
FindPath
(
ag
.
env
.
station
,
start
,
end
,
ag
.
path
[
0
])
time
.
Sleep
(
time
.
Second
)
ag
.
path
=
path
}
if
IsMovementSafe
(
path
,
ag
,
ag
.
env
)
{
if
IsMovementSafe
(
ag
.
path
,
ag
,
ag
.
env
)
{
removeAgent
(
&
ag
.
env
.
station
,
ag
)
rotateAgent
(
ag
,
path
[
0
]
.
Or
())
rotateAgent
(
ag
,
ag
.
path
[
0
]
.
Or
())
//ag.env.station[ag.coordBasOccupation[0]][ag.coordBasOccupation[1]] = ag.isOn
ag
.
position
[
0
]
=
path
[
0
]
.
Row
()
ag
.
position
[
1
]
=
path
[
0
]
.
Col
()
ag
.
position
[
0
]
=
ag
.
path
[
0
]
.
Row
()
ag
.
position
[
1
]
=
ag
.
path
[
0
]
.
Col
()
if
len
(
ag
.
path
)
>
1
{
ag
.
path
=
ag
.
path
[
1
:
]
}
else
{
ag
.
path
=
nil
}
saveCells
(
&
ag
.
env
.
station
,
ag
.
isOn
,
ag
.
position
,
ag
.
width
,
ag
.
height
,
ag
.
orientation
)
//ag.env.station[ag.coordBasOccupation[0]][ag.coordBasOccupation[1]] = "A"
writeAgent
(
&
ag
.
env
.
station
,
ag
)
...
...
This diff is collapsed.
Click to expand it.
internal/simulation/env.go
+
4
−
0
View file @
08e13ecb
...
...
@@ -11,8 +11,12 @@ type Environment struct {
agentCount
int
station
[
20
][
20
]
string
agentsChan
map
[
AgentID
]
chan
AgentID
//zones map[ZoneID][]Coord // Zones de la station
//panneaux map[ZoneID][]Coord // Les panneaux de la station, permettant d'aller vers la zone
}
type
ZoneID
int
func
NewEnvironment
(
ags
[]
Agent
,
carte
[
20
][
20
]
string
,
agentsCh
map
[
AgentID
]
chan
AgentID
)
(
env
*
Environment
)
{
return
&
Environment
{
ags
:
ags
,
agentCount
:
len
(
ags
),
station
:
carte
,
agentsChan
:
agentsCh
}
}
...
...
This diff is collapsed.
Click to expand it.
internal/simulation/simu.go
+
1
−
1
View file @
08e13ecb
...
...
@@ -97,7 +97,7 @@ func NewSimulation(agentCount int, maxStep int, maxDuration time.Duration) (simu
syncChan
:=
make
(
chan
int
)
//ag := NewAgent(id, &simu.env, syncChan, time.Duration(time.Second), 0, true, Coord{0, 8 + i%2}, Coord{0, 8 + i%2}, &UsagerLambda{}, Coord{0, 8 + i%2}, Coord{12 - 4*(i%2), 18 - 15*(i%2)})
ag
:=
NewAgent
(
id
,
&
simu
.
env
,
syncChan
,
1000
,
0
,
true
,
&
UsagerLambda
{},
Coord
{
2
,
8
},
Coord
{
13
,
1
5
},
2
,
1
)
ag
:=
NewAgent
(
id
,
&
simu
.
env
,
syncChan
,
1000
,
0
,
true
,
&
UsagerLambda
{},
Coord
{
2
,
8
},
Coord
{
13
,
1
4
},
2
,
1
)
//ag := NewAgent(id, &simu.env, syncChan, 1000, 0, true, &UsagerLambda{}, Coord{5, 8}, Coord{0, 0}, 2, 1)
// ajout de l'agent à la simulation
...
...
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