Improved www.ttss.krakow.pl
Jacek Kowalski
2017-04-12 68aeb4a997a99ac7dde426ad7a3c87205b4f89d2
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
// Special directions
var special_directions = {
    'Zajezdnia Nowa Huta' : 'NH',
    'Zajezdnia Podgórze' : 'P',
};
 
// Webservice-related functions
function parseVehicle(vehicleId) {
    if(!vehicleId) return;
    if(vehicleId.substr(0, 15) != '635218529567218') {
        console.log('Unknown vehicle, vehicleId=' + vehicleId);
        return;
    }
    
    var id = parseInt(vehicleId.substr(15)) - 736;
    var prefix;
    var type;
    var low; // low floor: 0 = no, 1 - semi, 2 - full
    
    // Single exception - old id used in one case
    if(id == 831) {
        id = 216;
    }
    
    if(101 <= id && id <= 173) {
        prefix = 'HW';
        type = 'E1';
        low = 0;
        
        if((108 <= id && id <= 113) || id == 127 || id == 131 || id == 132 || id == 134 || (137 <= id && id <= 139) || (148 <= id && id <= 150) || (153 <= id && id <= 166) || id == 161) {
            prefix = 'RW';
        }
    } else if(201 <= id && id <= 293) {
        prefix = 'RZ';
        type = '105Na';
        low = 0;
        
        if(246 <= id) {
            prefix = 'HZ';
        }
        if(id == 290) {
            type = '105Nb';
        }
    } else if(301 <= id && id <= 328) {
        prefix = 'RF';
        type = 'GT8S';
        low = 0;
        
        if(id == 313) {
            type = 'GT8C'
            low = 1;
        }
    } else if(401 <= id && id <= 440) {
        prefix = 'HL';
        type = 'EU8N';
        low = 1;
    } else if(451 <= id && id <= 462) {
        prefix = 'HK';
        type = 'N8S-NF';
        low = 0;
        
        if((451 <= id && id <= 453) || id == 462) {
            type = 'N8C-NF';
            low = 1;
        }
    } else if(601 <= id && id <= 650) {
        prefix = 'RP';
        type = 'NGT6 (3)';
        low = 2;
        
        if(id <= 613) {
            type = 'NGT6 (1)';
        } else if (id <= 626) {
            type = 'NGT6 (2)';
        }
    } else if(801 <= id && id <= 824) {
        prefix = 'RY';
        type = 'NGT8';
        low = 2;
    } else if(id == 899) {
        prefix = 'RY';
        type = '126N';
        low = 2;
    } else if(901 <= id && id <= 936) {
        prefix = 'RG';
        type = '2014N';
        low = 2;
        
        if(915 <= id) {
            prefix = 'HG';
        }
    } else if(id === 999) {
        prefix = 'HX';
        type = '405N-Kr';
        low = 1;
    } else {
        console.log('Unknown vehicle, vehicleId=' + vehicleId + ', id=' + id);
        return;
    }
    
    return {
        vehicleId: vehicleId,
        prefix: prefix,
        id: id,
        num: prefix + id,
        type: type,
        low: low
    };
}
 
// Element mangling
function deleteChildren(element) {
    while(element.lastChild) element.removeChild(element.lastChild);
}
 
function addElementWithText(parent, element, text) {
    var elem = document.createElement(element);
    elem.appendChild(document.createTextNode(text));
    parent.appendChild(elem);
    return elem;
}
 
function addCellWithText(parent, text) {
    return addElementWithText(parent, 'td', text);
}
 
function addParaWithText(parent, text) {
    return addElementWithText(parent, 'p', text);
}
 
function setText(element, text) {
    deleteChildren(element);
    element.appendChild(document.createTextNode(text));
}
 
// Other functions
var decodeEntitiesTextArea = document.createElement('textarea');
function decodeEntities(text) {
    decodeEntitiesTextArea.innerHTML = text;
    return decodeEntitiesTextArea.value;
}