-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAbstractVehicle.php
More file actions
87 lines (58 loc) · 1.98 KB
/
AbstractVehicle.php
File metadata and controls
87 lines (58 loc) · 1.98 KB
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
<?php
abstract class AbstractVehicle {
private $name;
private $status = false;
private $fuelUsage;
private $fuelRemaining = 0.0;
abstract public function run(int $distance);
public function start() {
if ($this -> getStatus() == true)
throw new InvalidArgumentException("Araç zaten çalışıyor.");
if ($this -> getFuelRemaining() < 1)
throw new InvalidArgumentException('Depo Boş. Araç çalıştırılamaz');
$this-> setStatus(true);
echo $this->getName().' çalıştırıldı.<br>';
}
public function stop() {
if ($this -> getStatus() == false)
throw new InvalidArgumentException("Araç zaten çalışmıyor.");
$this -> setStatus(false);
echo $this->getName().' stop edildi.<br>';
}
public function testVehicleRequirements2Run(int $distance){
if($this->getStatus()==false)
throw new InvalidArgumentException('Lütfen önce aracı çalıştırın');
$getFuelUsage = $this -> getFuelUsage();
if ($getFuelUsage == null)
throw new InvalidArgumentException('100km de ne kadar yakıt harcadığımı bilmediğim için, bu yolu gidebilir miyim bilmiyorum.');
$getRemFuel = $this -> getFuelRemaining();
$calcMaxDistance = ($getRemFuel / $getFuelUsage) * 100;
if ($distance > $calcMaxDistance)
throw new RangeException($distance . ' km mesafeyi gidemem. En fazla gidebileceğim mesafe ' . $calcMaxDistance . ' km');
return true;
}
public function setName(string $name) {
$this -> name = $name;
}
public function getName() {
return $this -> name;
}
public function setFuelUsage(float $fuelUsage) {
$this -> fuelUsage = $fuelUsage;
}
public function getFuelUsage() {
return $this -> fuelUsage;
}
public function setFuelRemaining(float $fuelRemaining) {
$this -> fuelRemaining = $fuelRemaining;
}
public function getFuelRemaining() {
return $this -> fuelRemaining;
}
public function setStatus(bool $status) {
$this -> status = $status;
}
public function getStatus() {
return $this -> status;
}
}