summaryrefslogtreecommitdiff
path: root/scripts/osp.lua
blob: b5ff08c0839f1ec19e1df8744b19346c97d57e39 (plain)
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
-- SLIMax Mgr Lua Script v3
-- Copyright (c)2012-2013  by Zappadoc - All Rights Reserved.
-- this script builds all Optimal ShiftPoints methods (OSP)
-- last change by Zappadoc - 2013-02

function SetOSPFeedback(state)
	if mOSPLED1 > 6 then
		SetExtLed( (mOSPLED1 - 6), state)
	else
		SetWarnLed(mOSPLED1, state)
	end
	if mOSPLED2 > 6 then
		SetExtLed( (mOSPLED2 - 6), state)
	else
		SetWarnLed(mOSPLED2, state)
	end
end

-- SLI-M, SLI-PRO OSP Methods Event
function ospMethodEvent(idx)
	mOSPMethod = idx
	-- OSP Limit default value is set in gear.lua
	if gOSPLimit == nil or gOSPLimit == 0 then gOSPLimit = GetContextInfo("osplimitrpm") end
	
	-- call custom script (this is a good place to overwrite gOSPLimit value)
	local result = custom_ospMethodEvent(mOSPMethod)
	-- if result = 0 bypass the script below and return 0
	-- if result = 1 bypass the script below and return 1
	if result <= 1 then return result end
	-- if result >= 2 continue

	-- call global custom script (this is a good place to overwrite gOSPLimit value)
	result = global_custom_ospMethodEvent(mOSPMethod)
	-- if result = 0 bypass the script below and return 0
	-- if result = 1 bypass the script below and return 1
	if result <= 1 then return result end
	-- if result >= 2 continue
	
	-- check if globals initialized
	if isGlobalInitialized == 0 then
		isGlobalInitialized = 1
		-- init
		InitGlobals()
	end
	-- get global prefs
	GetSLIMaxInfo()
	
	local led = ""
	
	-- get rpm
	local rpm = 0
	rpm = GetCarInfo("rpm")
	if rpm == nil then rpm = 0 end
	
	-- get red zone value
	--local redZone = GetCarInfo("redzone")
	--if redZone == nil then  redZone = 18000 end
	
	-- get current osp factor
	--local ospFactor = GetContextInfo("ospfactor")
	--if ospFactor == nil then  ospFactor = 80 end
	
	-- get current gear
	local gear = 0
	gear = GetCarInfo("gear")
	if gear == nil then  gear = 0 end
	
	-- get max gear of current car
	-- Alternate way to calc max gear if not available in API
	-- Use a global mMaxGear and do the following
	-- if gear > mMaxGear then mMaxGear = gear end	local maxGear = 4
	
	maxGear = GetCarInfo("maxgear")
	if maxGear == nil then  maxGear = 4 end
	
	-- skip if neutral or ==maxgear 
	if gear <=0 or gear>=maxGear then 
		-- do nothing
		return 1
	end 
	
	-- skip if first gear not allowed
	if not mOSPWithFirstGear and gear == 1 then
		-- do nothing
		return 1
	end
	
	-- print("OSP1: " .. mOSPLED1 .. " OSP2: " .. mOSPLED2 .."\n")
	-- print(rpm .. " - " .. gOSPLimit)
	
	-- rpm > osplimit so activate shiftpoints leds
	if rpm > gOSPLimit then

		-- no blinking allowed
		if mNoBlink then
			-- set both leds
			SetOSPFeedback(1)
			
		else
		
			if GetTicks() > mOldOSPTickCount then
				mOSPBlink = mOSPBlink + 1
			end
			
			if mOSPMethod <= 3 then
				-- methods 1 to 3
				if mOSPBlink >= mOSPBlinkTime then
					mOSPBlink = 0
				end

				if mOSPBlink <= (mOSPBlinkTime / 2) then
					if mOSPMethod ~= 3 then
						-- if not method 3
						SetOSPFeedback(1)
					end
					if (mOSPMethod == 1) or (mOSPMethod == 3) then
						-- add blue leds blinking if method 1 or 3
						for i =  9,12 do 
							led = led.format("RPM%d",i)
							mRPMLedTable[led] = 1
						end	
						SetRPMLed("mRPMLedTable")
					end
				end

				if mOSPBlink > (mOSPBlinkTime / 2) then
					SetOSPFeedback(0)
					
					if (mOSPMethod == 1) or (mOSPMethod == 3) then
						-- add blue leds blinking if method 1 or 3
						for i =  9,12 do 
							led = led.format("RPM%d",i)
							mRPMLedTable[led] = 0
						end	
						SetRPMLed("mRPMLedTable")
					end
				end
			end
			
			if mOSPMethod == 2 then
				-- add blue leds not blinking if method 2
				for i =  9,12 do 
					led = led.format("RPM%d",i)
					mRPMLedTable[led] = 1
				end	
				SetRPMLed("mRPMLedTable")
			end
		end
	else
		-- bypass (give control to manager)
		return 1
	end
	-- timebase
	if GetTicks() > mOldOSPTickCount then
		mOldOSPTickCount = GetTicks() + 10
	end
	
	return 1
end


-- G27 Methods Event
function ospG27MethodEvent(idx)
	mOSPMethod = idx
	-- OSP Limit default value is set in gear.lua
	if gOSPLimit == nil or gOSPLimit == 0 then gOSPLimit = GetContextInfo("osplimitrpm") end
	
	-- call custom script (this is a good place to overwrite gOSPLimit value)
	local result = custom_ospG27MethodEvent(mOSPMethod)
	-- if result = 0 bypass the script below and return 0
	-- if result = 1 bypass the script below and return 1
	if result <= 1 then return result end
	-- if result >= 2 continue

	-- call global custom script (this is a good place to overwrite gOSPLimit value)
	result = global_custom_ospG27MethodEvent(mOSPMethod)
	-- if result = 0 bypass the script below and return 0
	-- if result = 1 bypass the script below and return 1
	if result <= 1 then return result end
	-- if result >= 2 continue
	
	-- check if globals initialized
	if isGlobalInitialized == 0 then
		isGlobalInitialized = 1
		-- init
		InitGlobals()
	end
	-- get global prefs
	GetSLIMaxInfo()
	
	local led = ""
	
	-- get rpm
	local rpm = 0
	rpm = GetCarInfo("rpm")
	if rpm == nil then rpm = 0 end
	
	-- get current gear
	local gear = 0
	gear = GetCarInfo("gear")
	if gear == nil then  gear = 0 end
	
	-- get max gear of current car
	-- Alternate way to calc max gear if not available in API
	-- Use a global mMaxGear and do the following
	-- if gear > mMaxGear then mMaxGear = gear end	local maxGear = 4
	
	maxGear = GetCarInfo("maxgear")
	if maxGear == nil then  maxGear = 4 end
	
	-- skip if neutral or ==maxgear 
	if gear <=0 or gear>=maxGear then 
		-- do nothing
		return 1
	end 
	
	-- print("MAXGear: " .. gear.."/"..maxGear.." OSP: " .. mOSPMethod .. " rpm: " .. rpm .. " - " .. gOSPLimit .. "\n")

	
	-- skip if first gear not allowed
	if not mOSPWithFirstGear and gear == 1 then
		-- do nothing
		return 1
	end
	
	
	-- rpm > osplimit so activate shiftpoints leds
	if rpm > gOSPLimit then

		mG27Leds = 0
		
		-- no blinking allowed
		if mNoBlink then
			-- set all leds
			mG27Leds = 0x1F;
			
		else
			if GetTicks() > mOldOSPTickCount then
				mOSPBlink = mOSPBlink + 1
			end
			
			if mOSPMethod <= 1 or mOSPMethod > 3 then
				-- methods 1 all blinking
				if mOSPBlink >= mOSPBlinkTime then
					mOSPBlink = 0
				end

				if mOSPBlink <= (mOSPBlinkTime / 2) then	
					mG27Leds = 0x1F;
				end

				if mOSPBlink > (mOSPBlinkTime / 2) then
					mG27Leds = 0;
				end
			elseif mOSPMethod == 2 then
				-- methods side blinking
				if mOSPBlink >= mOSPBlinkTime then
					mOSPBlink = 0
				end

				if mOSPBlink <= (mOSPBlinkTime / 2) then	
					mG27Leds = 0x3;
				end

				if mOSPBlink > (mOSPBlinkTime / 2) then
					mG27Leds = 0;
				end
				
			elseif mOSPMethod == 3 then
				-- methods 3 center blinking
				if mOSPBlink >= mOSPBlinkTime then
					mOSPBlink = 0
				end

				if mOSPBlink <= (mOSPBlinkTime / 2) then	
					mG27Leds = 0x18;
				end

				if mOSPBlink > (mOSPBlinkTime / 2) then
					mG27Leds = 0;
				end
			end
		end
		SetG27Led(mG27Leds)
	else
		-- bypass (give control to manager)
		return 1
	end
	-- timebase
	if GetTicks() > mOldOSPTickCount then
		mOldOSPTickCount = GetTicks() + 10
	end
	
	return 1
end

-- Fanatec OSP Methods Event
function ospFanatecMethodEvent(idx)
	mOSPMethod = idx
	-- OSP Limit default value is set in gear.lua
	if gOSPLimit == nil or gOSPLimit == 0 then gOSPLimit = GetContextInfo("osplimitrpm") end
	
	-- call custom script (this is a good place to overwrite gOSPLimit value)
	local result = custom_ospFanatecMethodEvent(mOSPMethod)
	-- if result = 0 bypass the script below and return 0
	-- if result = 1 bypass the script below and return 1
	if result <= 1 then return result end
	-- if result >= 2 continue

	-- call global custom script (this is a good place to overwrite gOSPLimit value)
	result = global_custom_ospFanatecMethodEvent(mOSPMethod)
	-- if result = 0 bypass the script below and return 0
	-- if result = 1 bypass the script below and return 1
	if result <= 1 then return result end
	-- if result >= 2 continue
	
	-- check if globals initialized
	if isGlobalInitialized == 0 then
		isGlobalInitialized = 1
		-- init
		InitGlobals()
	end
	-- get global prefs
	GetSLIMaxInfo()
			
	local led = ""
	
	-- get rpm
	local rpm = 0
	rpm = GetCarInfo("rpm")
	if rpm == nil then rpm = 0 end
		
	-- get current gear
	local gear = 0
	gear = GetCarInfo("gear")
	if gear == nil then  gear = 0 end
	
	-- get max gear of current car
	-- Alternate way to calc max gear if not available in API
	-- Use a global mMaxGear and do the following
	-- if gear > mMaxGear then mMaxGear = gear end	local maxGear = 4
	
	maxGear = GetCarInfo("maxgear")
	if maxGear == nil then  maxGear = 4 end
	
	-- skip if neutral or ==maxgear 
	if gear <=0 or gear>=maxGear then 
		-- do nothing
		return 1
	end 
	
	-- skip if first gear not allowed
	if not mOSPWithFirstGear and gear == 1 then
		-- do nothing
		return 1
	end
		
	-- rpm > osplimit so activate shiftpoints leds
	if rpm > gOSPLimit then

		-- no blinking allowed
		if mNoBlink then	
			-- no led
		else
		
			if GetTicks() > mOldOSPTickCount then
				mOSPBlink = mOSPBlink + 1
			end
			
			-- methods 1 to 4
			if mOSPBlink >= mOSPBlinkTime then
				mOSPBlink = 0
			end

			if mOSPBlink <= (mOSPBlinkTime / 2) then
				if (mOSPMethod <= 0) or mOSPMethod > 4 then
					-- blue leds blinking if method 0, ON
					for i =  6,8 do 
						led = led.format("RPM%d",i)
						mRPMLedTable[led] = 1
					end	
					
				elseif mOSPMethod == 1 then
					-- all leds blinking if method 1, ON
					for i =  0,8 do 
						led = led.format("RPM%d",i)
						mRPMLedTable[led] = 1
					end	
					
				elseif mOSPMethod == 2 then
					initLedTable(mRPMLedTable, 0)
					-- side leds blinking if method  2, ON
					mRPMLedTable["RPM0"] = 1
					mRPMLedTable["RPM1"] = 1
					mRPMLedTable["RPM7"] = 1
					mRPMLedTable["RPM8"] = 1

				elseif mOSPMethod == 3 then
					initLedTable(mRPMLedTable, 0)
					-- center leds blinking if method 3, ON
					mRPMLedTable["RPM3"] = 1
					mRPMLedTable["RPM4"] = 1
					mRPMLedTable["RPM5"] = 1
					
				elseif mOSPMethod == 4 then
					initLedTable(mRPMLedTable, 0)
					-- side fixed if method 4, ON
					mRPMLedTable["RPM0"] = 1
					mRPMLedTable["RPM1"] = 1
					mRPMLedTable["RPM7"] = 1
					mRPMLedTable["RPM8"] = 1
				end
				SetFanatecLed("mRPMLedTable")
			end

			if mOSPBlink > (mOSPBlinkTime / 2) then
				if (mOSPMethod <= 0) or mOSPMethod > 4 then
					-- blue leds blinking if method 0 , OFF
					for i =  6,8 do 
						led = led.format("RPM%d",i)
						mRPMLedTable[led] = 0
					end	
					
				elseif mOSPMethod == 1 then
					-- all leds blinking if method 1, OFF
					for i =  0,8 do 
						led = led.format("RPM%d",i)
						mRPMLedTable[led] = 0
					end	
					
				elseif mOSPMethod == 2 then
					initLedTable(mRPMLedTable, 0)
					-- side leds blinking if method  2, OFF
					mRPMLedTable["RPM0"] = 0
					mRPMLedTable["RPM1"] = 0
					mRPMLedTable["RPM7"] = 0
					mRPMLedTable["RPM8"] = 0

				elseif mOSPMethod == 3 then
					initLedTable(mRPMLedTable, 0)
					-- center leds blinking if method 3, OFF
					mRPMLedTable["RPM3"] = 0
					mRPMLedTable["RPM4"] = 0
					mRPMLedTable["RPM5"] = 0
					
				elseif mOSPMethod == 4 then
					initLedTable(mRPMLedTable, 0)
					-- side fixed if method 4, ON
					mRPMLedTable["RPM0"] = 1
					mRPMLedTable["RPM1"] = 1
					mRPMLedTable["RPM7"] = 1
					mRPMLedTable["RPM8"] = 1
				end
				SetFanatecLed("mRPMLedTable")
			end
		end
		
	else
		-- bypass (give control to manager)
		return 1
	end
	-- timebase
	if GetTicks() > mOldOSPTickCount then
		mOldOSPTickCount = GetTicks() + 10
	end
	
	return 1
end