List of commits:
Subject Hash Author Date (UTC)
Added first paths of crossroad. Also added reference of crossroad. bb687a8152231d0c89fed827baefcfbf067be90c Jan Allersma 2017-09-21 12:21:11
Fixed typo. db82c84f8d834e62cb37333ff973ddc54af5372f Jan Allersma 2017-09-20 20:51:15
RabbitMQ test.First attempt. 876d29c668f5e027a820f3ff48a6ca080fc530c2 Jan Allersma 2017-09-19 13:47:31
Initial commit 6a565c61a3337232d0e7a136ffb2f49b431c2a40 Jan Allersma 2017-09-11 06:52:38
Commit bb687a8152231d0c89fed827baefcfbf067be90c - Added first paths of crossroad. Also added reference of crossroad.
Author: Jan Allersma
Author date (UTC): 2017-09-21 12:21
Committer name: Jan Allersma
Committer date (UTC): 2017-09-21 12:21
Parent(s): db82c84f8d834e62cb37333ff973ddc54af5372f
Signer:
Signing key:
Signing status: N
Tree: e61185f0c06a63be8884bd375b9d6b2ae0055835
File Lines added Lines deleted
.gitignore 1 0
genummerdKruispunt.png 0 0
kruispunt.png 0 0
kruispunt.xcf 0 0
simulatie/ball.png 0 0
simulatie/rabbit.py 22 0
simulatie/sim.py 79 0
File .gitignore added (mode: 100644) (index 0000000..0d20b64)
1 *.pyc
File genummerdKruispunt.png added (mode: 100644) (index 0000000..ece85d8)
File kruispunt.png added (mode: 100644) (index 0000000..07406ce)
File kruispunt.xcf added (mode: 100644) (index 0000000..d7ef24f)
File simulatie/ball.png added (mode: 100644) (index 0000000..3998465)
File simulatie/rabbit.py added (mode: 100644) (index 0000000..c9e7c8a)
1 #!/bin/env python
2
3 import pika
4
5 def connect():
6 while True:
7 connection = pika.BlockingConnection(pika.ConnectionParameters(host='127.0.0.1'))
8 channel = connection.channel()
9
10 channel.queue_declare(queue='h')
11
12 def callback(ch, method, prop, body):
13 print('%r ontvangen' % body)
14
15 channel.basic_consume (
16 callback,
17 queue='h',
18 no_ack=True
19 )
20
21 print('Waiting for a sign..')
22 channel.start_consuming()
File simulatie/sim.py added (mode: 100644) (index 0000000..71db790)
1 #!/bin/env python
2
3 import sys, pygame
4 import rabbit
5 import thread
6
7 pygame.init()
8
9 speed = [2,2]
10
11 screen = pygame.display.set_mode((800, 600))
12
13 ball = pygame.image.load("ball.png")
14 ballrect = ball.get_rect()
15
16 #thread.start_new_thread(rabbit.connect, ())
17
18 def drawMap():
19 kruispunt = pygame.image.load("../kruispunt.png")
20 screen.fill((255,255,255))
21 screen.blit(kruispunt,kruispunt.get_rect())
22 # drawSpoorlijn()
23 drawStrook35()
24 # drawStrook25()
25 # drawStrook16()
26 # drawStrook15()
27 # drawStrook14()
28 # drawStrook18()
29 # drawStrook22()
30
31 def drawSpoorlijn():
32 pygame.draw.lines(screen, (100,100,100), False, [(799,450),(1,550)], 3)
33 pygame.draw.lines(screen, (100,100,100), False, [(799,460),(1,560)], 3)
34 for i in range(0, 27):
35 pygame.draw.lines(screen, (139,62,17), False, [(30*i,545-3.7*i),(30*i,565-3.7*i)], 2)
36
37 def drawStrook35():
38 pygame.draw.rect(screen, (120,120,120), (30*16,599,5,5),10)
39 pygame.draw.rect(screen, (120,120,120), (30*15.8,500,5,5),10)
40 pygame.draw.rect(screen, (120,120,120), (30*14,450,5,5),10)
41 pygame.draw.rect(screen, (120,120,120), (30*11,390,5,5),10)
42 pygame.draw.rect(screen, (120,120,120), (30*9,360,5,5),10)
43 pygame.draw.rect(screen, (120,120,120), (30*6,340,5,5),10)
44 pygame.draw.rect(screen, (120,120,120), (1,360,5,5),10)
45
46 def drawStrook25():
47 pygame.draw.lines(screen, (166,46,46), False, [(30*16+10,599),(30*15.8+10,500),(30*14,385),(30*11,355),(30*8,327),(30*6+10,320),(1,340)], 10)
48
49 def drawStrook16():
50 pygame.draw.lines(screen, (90,90,90), False, [(30*18,599),(30*15,355),(30*12,320),(30*8,295),(30*4,295),(1,320)], 20)
51
52 def drawStrook15():
53 pygame.draw.lines(screen, (90,90,90), False, [(30*19,599),(30*15,275),(30*12,240),(30*8,225),(30*4,245),(1,290)], 20)
54
55 def drawStrook14():
56 pygame.draw.lines(screen, (90,90,90), False, [(30*20,599),(30*16,290),(30*15.5, 150),(30*16, 1)], 20)
57
58 def drawStrook18():
59 pygame.draw.lines(screen, (90,90,90), False, [(1,320),(30*4,295),(30*8,275), (30*12,290),(30*16,345),(30*19,380),(30*22,390),(799,380)], 20)
60
61 def drawStrook22():
62 pygame.draw.lines(screen, (166,46,46), False, [(30*16+10,599),(30*15.8+10,500),(30*14,385),(30*10,330),(30*11.5,1)], 10)
63
64 drawMap()
65 # Mainloop
66 while True:
67 for event in pygame.event.get():
68 if event.type == pygame.QUIT: sys.exit()
69
70 # ballrect = ballrect.move(speed)
71 # if ballrect.left < 0 or ballrect.right > width:
72 # speed[0] *= -1;
73 # if ballrect.top < 0 or ballrect.bottom > height:
74 # speed[1] *= -1;
75
76 # screen.fill(0,0,0) # Black background
77 # screen.blit(ball, ballrect)
78 # drawMap()
79 pygame.display.flip()
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/kapstok/NHL-SoftDev

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/kapstok/NHL-SoftDev

Clone this repository using git:
git clone git://git.rocketgit.com/user/kapstok/NHL-SoftDev

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main