mirror of
https://github.com/brmlab/ratbox.git
synced 2025-06-07 17:34:07 +02:00
Zaskrtavatko 'prednastav pitko'
This commit is contained in:
parent
f06f973b19
commit
866a64eb29
2 changed files with 32 additions and 0 deletions
|
@ -21,6 +21,7 @@ Public konfigurace_experiment_vypni_stimul_pauza_enable As Boolean
|
||||||
Public konfigurace_experiment_casovani As Boolean
|
Public konfigurace_experiment_casovani As Boolean
|
||||||
Public konfigurace_experiment_vypni_stimul_prereset As Boolean
|
Public konfigurace_experiment_vypni_stimul_prereset As Boolean
|
||||||
Public konfigurace_experiment_vypni_stimul_poakci As Boolean
|
Public konfigurace_experiment_vypni_stimul_poakci As Boolean
|
||||||
|
Public konfigurace_experiment_prednastav_pitko As Boolean
|
||||||
|
|
||||||
Public konfigurace_experiment_slot_enable_1 As Boolean
|
Public konfigurace_experiment_slot_enable_1 As Boolean
|
||||||
Public konfigurace_experiment_slot_enable_2 As Boolean
|
Public konfigurace_experiment_slot_enable_2 As Boolean
|
||||||
|
@ -412,6 +413,7 @@ Dim StatTMP As String
|
||||||
Endif
|
Endif
|
||||||
Print #SysLogFile, "NASTAVENI_SEPARATANI_CASOVANI_ENABLED" & ";" & StatTMP & ";" & "NULL" & ";" & "NULL"
|
Print #SysLogFile, "NASTAVENI_SEPARATANI_CASOVANI_ENABLED" & ";" & StatTMP & ";" & "NULL" & ";" & "NULL"
|
||||||
|
|
||||||
|
|
||||||
If konfigurace_experiment_slot_enable_1 = True Then
|
If konfigurace_experiment_slot_enable_1 = True Then
|
||||||
StatTMP = "TRUE"
|
StatTMP = "TRUE"
|
||||||
Else
|
Else
|
||||||
|
@ -455,6 +457,15 @@ Dim StatTMP As String
|
||||||
Endif
|
Endif
|
||||||
Print #SysLogFile, "NASTAVENI_CASOVANI_S6" & ";" & konfigurace_experiment_casovani_s6 & ";" & "SLOT_6_ENABLED" & ";" & StatTMP
|
Print #SysLogFile, "NASTAVENI_CASOVANI_S6" & ";" & konfigurace_experiment_casovani_s6 & ";" & "SLOT_6_ENABLED" & ";" & StatTMP
|
||||||
|
|
||||||
|
|
||||||
|
If konfigurace_experiment_prednastav_pitko = True Then
|
||||||
|
StatTMP = "TRUE"
|
||||||
|
Else
|
||||||
|
StatTMP = "FALSE"
|
||||||
|
Endif
|
||||||
|
Print #SysLogFile, "NASTAVENI_PREDNASTAV_PITKO" & ";" & StatTMP & ";" & "NULL" & ";" & "NULL"
|
||||||
|
|
||||||
|
|
||||||
Print #SysLogFile, "<FORMAT DAT>"
|
Print #SysLogFile, "<FORMAT DAT>"
|
||||||
|
|
||||||
Print #SysLogFile, "casova_osa(ms);parametr1;HODNOTA;parametr2;HODNOTA"
|
Print #SysLogFile, "casova_osa(ms);parametr1;HODNOTA;parametr2;HODNOTA"
|
||||||
|
@ -939,6 +950,9 @@ Public Sub VypisParametry()
|
||||||
SysLogWrite("KONFIGURACE_EXPERIMENT_CASOVANI_SLOT_4: " & Str(konfigurace_experiment_casovani_s4))
|
SysLogWrite("KONFIGURACE_EXPERIMENT_CASOVANI_SLOT_4: " & Str(konfigurace_experiment_casovani_s4))
|
||||||
SysLogWrite("KONFIGURACE_EXPERIMENT_CASOVANI_SLOT_5: " & Str(konfigurace_experiment_casovani_s5))
|
SysLogWrite("KONFIGURACE_EXPERIMENT_CASOVANI_SLOT_5: " & Str(konfigurace_experiment_casovani_s5))
|
||||||
SysLogWrite("KONFIGURACE_EXPERIMENT_CASOVANI_SLOT_6: " & Str(konfigurace_experiment_casovani_s6))
|
SysLogWrite("KONFIGURACE_EXPERIMENT_CASOVANI_SLOT_6: " & Str(konfigurace_experiment_casovani_s6))
|
||||||
|
|
||||||
|
If konfigurace_experiment_prednastav_pitko = True Then SysLogWrite("KONFIGURACE_EXPERIMENT_PREDNASTAV_PITKO: ZAPNUTO")
|
||||||
|
If konfigurace_experiment_prednastav_pitko = False Then SysLogWrite("KONFIGURACE_EXPERIMENT_PREDNASTAV_PITKO: VYPNUTO")
|
||||||
End
|
End
|
||||||
|
|
||||||
Public Sub UplatniParametry()
|
Public Sub UplatniParametry()
|
||||||
|
@ -976,6 +990,7 @@ Public Sub UplatniParametry()
|
||||||
konfigurace_experiment_casovani_s5 = Val(ExpTxtS5Time.Text)
|
konfigurace_experiment_casovani_s5 = Val(ExpTxtS5Time.Text)
|
||||||
konfigurace_experiment_casovani_s6 = Val(ExpTxtS6Time.Text)
|
konfigurace_experiment_casovani_s6 = Val(ExpTxtS6Time.Text)
|
||||||
TimeoutOpakReset = ChkTimeoutOpakReset.Value
|
TimeoutOpakReset = ChkTimeoutOpakReset.Value
|
||||||
|
konfigurace_experiment_prednastav_pitko = ChkPrednastavPitko.Value
|
||||||
Else
|
Else
|
||||||
Message("! CHYBA ZADANEHO CASU: v rozliseni (ms) je minimalni hodnota 10")
|
Message("! CHYBA ZADANEHO CASU: v rozliseni (ms) je minimalni hodnota 10")
|
||||||
Endif
|
Endif
|
||||||
|
@ -1031,6 +1046,7 @@ Sub UlozDefoult()
|
||||||
Print #DefKonfFile, "False"
|
Print #DefKonfFile, "False"
|
||||||
Endif
|
Endif
|
||||||
Print #DefKonfFile, Str(TxtPreStimulyNazev.Text)
|
Print #DefKonfFile, Str(TxtPreStimulyNazev.Text)
|
||||||
|
Print #DefKonfFile, konfigurace_experiment_prednastav_pitko
|
||||||
Wait
|
Wait
|
||||||
DefKonfFile.Close
|
DefKonfFile.Close
|
||||||
End
|
End
|
||||||
|
@ -1110,6 +1126,7 @@ Sub UlozUserCfg(CfgName As String)
|
||||||
Print #DefKonfFile, "False"
|
Print #DefKonfFile, "False"
|
||||||
Endif
|
Endif
|
||||||
Print #DefKonfFile, Str(TxtPreStimulyNazev.Text)
|
Print #DefKonfFile, Str(TxtPreStimulyNazev.Text)
|
||||||
|
Print #DefKonfFile, konfigurace_experiment_prednastav_pitko
|
||||||
Wait
|
Wait
|
||||||
DefKonfFile.Close
|
DefKonfFile.Close
|
||||||
|
|
||||||
|
@ -1185,6 +1202,8 @@ Dim arr_strings As String[]
|
||||||
If (linc = 36) And (lin = "True") Then ChkPreUkazStimul.Value = True
|
If (linc = 36) And (lin = "True") Then ChkPreUkazStimul.Value = True
|
||||||
If (linc = 36) And (lin = "False") Then ChkPreUkazStimul.Value = False
|
If (linc = 36) And (lin = "False") Then ChkPreUkazStimul.Value = False
|
||||||
If linc = 37 Then TxtPreStimulyNazev.Text = lin
|
If linc = 37 Then TxtPreStimulyNazev.Text = lin
|
||||||
|
If (linc = 38) And (lin = "True") Then ChkPrednastavPitko.Value = True
|
||||||
|
If (linc = 38) And (lin = "False") Then ChkPrednastavPitko.Value = False
|
||||||
linc = linc + 1
|
linc = linc + 1
|
||||||
Next
|
Next
|
||||||
SysLogWrite("PARAMETRY_OBNOVENY")
|
SysLogWrite("PARAMETRY_OBNOVENY")
|
||||||
|
@ -1544,6 +1563,12 @@ Dim exp_souhrn_odpoved As Integer
|
||||||
' [GB2:BCOL] LabelPre6.BackColor = Color.Background
|
' [GB2:BCOL] LabelPre6.BackColor = Color.Background
|
||||||
LabelPre6.Background = Color.Background
|
LabelPre6.Background = Color.Background
|
||||||
|
|
||||||
|
If konfigurace_experiment_prednastav_pitko = True Then
|
||||||
|
ChkPrednastavPitko.Background = Color.Green
|
||||||
|
ExpLogWrite("PREDNASTAVENO_PITKO" & ";" & "NaN" & ";" & "NULL" & ";" & "NaN")
|
||||||
|
AparaturaNastavPitko(tmp_stimul_idx)
|
||||||
|
Endif
|
||||||
|
|
||||||
' [GB2:BCOL] LabelPre7.BackColor = Color.Green
|
' [GB2:BCOL] LabelPre7.BackColor = Color.Green
|
||||||
LabelPre7.Background = Color.Green
|
LabelPre7.Background = Color.Green
|
||||||
stav_sloty = 0
|
stav_sloty = 0
|
||||||
|
@ -1622,6 +1647,7 @@ Dim exp_souhrn_odpoved As Integer
|
||||||
|
|
||||||
' RESET APARATURY
|
' RESET APARATURY
|
||||||
|
|
||||||
|
ChkPrednastavPitko.Background = Color.Background
|
||||||
AparaturaReset()
|
AparaturaReset()
|
||||||
Pauza(3)
|
Pauza(3)
|
||||||
' [GB2:BCOL] Label20.BackColor = Color.Background
|
' [GB2:BCOL] Label20.BackColor = Color.Background
|
||||||
|
@ -1857,6 +1883,8 @@ Dim arr_strings As String[]
|
||||||
If (linc = 36) And (lin = "True") Then ChkPreUkazStimul.Value = True
|
If (linc = 36) And (lin = "True") Then ChkPreUkazStimul.Value = True
|
||||||
If (linc = 36) And (lin = "False") Then ChkPreUkazStimul.Value = False
|
If (linc = 36) And (lin = "False") Then ChkPreUkazStimul.Value = False
|
||||||
If linc = 37 Then TxtPreStimulyNazev.Text = lin
|
If linc = 37 Then TxtPreStimulyNazev.Text = lin
|
||||||
|
If (linc = 38) And (lin = "True") Then ChkPrednastavPitko.Value = True
|
||||||
|
If (linc = 38) And (lin = "False") Then ChkPrednastavPitko.Value = False
|
||||||
linc = linc + 1
|
linc = linc + 1
|
||||||
Next
|
Next
|
||||||
SysLogWrite("PARAMETRY_PROFILU_NASTAVENY")
|
SysLogWrite("PARAMETRY_PROFILU_NASTAVENY")
|
||||||
|
|
|
@ -775,4 +775,8 @@
|
||||||
{ TxtPreStimulyNazev TextBox
|
{ TxtPreStimulyNazev TextBox
|
||||||
Move(420,273,175,21)
|
Move(420,273,175,21)
|
||||||
}
|
}
|
||||||
|
{ ChkPrednastavPitko CheckBox
|
||||||
|
Move(686,490,98,49)
|
||||||
|
Text = ("Prednastav\n pitko")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue