CH Pro Pedals

Forum dedicado a Joysticks, HOTAS, Track-Ir, Freetrack, contrôles e cockpit's tipo "faça você mesmo", etc.
Post Reply
User avatar
40_Griffon
Ala
Ala
Posts: 1667
Joined: 17 Dec 2005 21:00
Location: Santos/SP

CH Pro Pedals

Post by 40_Griffon »

Maaaaano, eu já devia ter investido neste brinquedo faz tempo, é muito shooow :D

Chegou hoje, fiz a calibração, efetuei alguns testes e está funcionando tudo direitinho, ache muito legal o nível de simulação que é adicionado quando se usa pedais, o avião fica muito mais obediente.

Uma pena que no IL-2 eu não possa colocar freios separados, mas isso não implica em nada, da uma vantagem muito grande se comparado com os leme twist.

Agora só falta chegar o meu CH Fighterstick e GUNS GUNS GUNS!!! :devil: :lol:

E não achei ele desconfortável não, os gringos são muito chorões mesmo, o espaço entre os pedais é super confortável pelo menos pra mim. Eles devem ter aquelas pernas gordas e grossas então deve ser por causa disso que preferem os Saiteks :lol: deve dar menos assaduras nas virilhas.

Conjunto HOTAS + Pedals completos da CH, agora sim não compro mais nada em matéria de hardware para simulação, vai dar para passar pro meu filho e para os meus netos. :D
21_Sokol1
Veterano
Veterano
Posts: 15493
Joined: 01 Aug 2003 21:00
Location: Uberaba-MG

Re: CH Pro Pedals

Post by 21_Sokol1 »

LuisF wrote: Uma pena que no IL-2 eu não possa colocar freios separados, mas isso não implica em nada, da uma vantagem muito grande se comparado com os leme twist.
No CH Hangar tem uma configuração que permite colocar os freios nos dois pedais, que somado ao sistema de freio diferencial do il-2 (sistema do avião il-2 real) conjugado com o leme - não fica o "toe brakes" que os gringos mimimi - mas engana bem.

Voce pisa no freio direito e empurra o leme para a direita, assim freia apenas a roda direita. E vice versa.

Ou configurando um dos pedais para o freio no Setup e depois copiando a entrada do eixo no freio no Doe\Settings.ini, tipo:

AXE_RZ JoystickDevice0=brake

Ccolando e mudando o nome do eixo nesta cópia para o do outro pedal tambem, funciona do mesmo jeito.

AXE_RZ JoystickDevice0=brake
AXE_RY JoystickDevice0=brake

Mas tem o inconveniente que toda vez que entra no Controls ou HOTAS esta segunda linha é apagada do Doe/Settings.ini, tem que refazer (talvez um .bat resolva).

Sokol1
21_Sokol1
Veterano
Veterano
Posts: 15493
Joined: 01 Aug 2003 21:00
Location: Uberaba-MG

Re: CH Pro Pedals

Post by 21_Sokol1 »

LuisF

Topei (no UbiZ00) esta configuração para o CH Mannager, que faz com que os pedais de freio do seu CH PRO Pedal funcionem como "toe brakes" no il-2, sem precisar mover o leme (que normalmente é necessário para acionar o sistema "diferential brake" modelado no jogo).

Basicamente, ao pisar num dos freios, ex. da direita, o script move tambem o leme para a direita (acionando o "diferential brake") comandando a freagem apenas naquela roda.

No frigir dos ovos o resultado é o mesmo, mas você estara simulando usar os freios (toe brakes) para virar o Mustang igual a um JoeYanke, e não igual a um Tomie ou Ruski. :P
//
//
// CMS Script to use toe brakes with IL-2 Based Sims
// Version 1.0 Tested on IL-2:FB+AEP+PF v3.04m
//
// Works by allowing the brake pedals to deflect the rudder to begin differential braking
//
// Rudder Axis overrides this unless BOTH pedals are fully depressed, and Rudder deflection will override
// opposite brake application, i.e. if right rudder is applied, the left brake will have no effect.
//
//


// Input Axes
%define leftBrakeIn js1.a1 // Change "js1" to whatever postion your Pro pedals are in the Control Manager
%define rightBrakeIn js1.a2
%define RudderIn js1.a3

// Output Axes
%define brakeOut cms.a1// Output axis for the Brakes
%define RudderOut cms.a2// Output Axis for the Rudder

// Internal Variables
%define setup b3
%Define MoreLeftBrake b1
%Define MoreRightBrake b2
%Define CombinedBrake a1

// Adjustment Variables, See Below
%Define Brakethreshold a2
%Define MinRudder a3
%Define MinBrake a4
%Define FullBrake a5

script
setup = false;
//setup = true; // *** LOOK HERE IMPORTANT!! *** remove the "//" in front of this line
// when you need to assign axes in IL-2
// Make sure you put them back them when your ready to fly

Brakethreshold = 64;// Threshold for difference Between left and right brakes, if difference is less than this value,
// script will return the average of the two brakes

MinRudder = 16; // Determines the minimum amount of Automatic Rudder deflection to Cause single Brake Application In IL-2

MinBrake = 16; // Determines Minimum Hardware pedal deflection before single brake application takes effect

FullBrake = 251; // Determines Minimum Hardware Pedal deflection before Rudder Overide For full Brake Application takes effect



if ([(leftbrakein - rightbrakein) GT Brakethreshold] or ([RightBrakeIn lt 1] and [LeftBrakeIn ge MinBrake]))then
MoreLeftBrake = True;
else MoreLeftBrake = False;
endif

if ([(Rightbrakein - leftbrakein) GT Brakethreshold] or ([LeftBrakeIn lt 1] and [RightBrakeIn ge MinBrake])) then
MoreRightBrake = True;
else MoreRightBrake = False;
endif


if (setup) then
RudderOut = RudderIn;
else
if ([leftbrakein GT FullBrake] and [rightbrakein GT FullBrake]) then
RudderOut = 128;
else
if ([RudderIn GT (128 - MinRudder)] and [RudderIn LT (128 + MinRudder)] and MoreLeftBrake) then
RudderOut = (128 - MinRudder);
else
if ([RudderIn GT (128 - MinRudder)] and [RudderIn LT (128 + MinRudder)] and MoreRightBrake) then
RudderOut = (128 + MinRudder);
else
RudderOut = RudderIn;
endif
endif
endif
endif

CombinedBrake = ((LeftBrakeIn + RightBrakeIn) / 2);

if ([RudderOut le (128 - MinRudder)]) then
BrakeOut = LeftbrakeIn;
else
if ([RudderOut ge (128 - MinRudder)]) then
BrakeOut = Rightbrakein;
else
Brakeout = CombinedBrake;
endif
endif

endScript
//
//
//
//
//
//
//
// FIN
Sokol1
User avatar
40_Griffon
Ala
Ala
Posts: 1667
Joined: 17 Dec 2005 21:00
Location: Santos/SP

Re: CH Pro Pedals

Post by 40_Griffon »

Tio, desculpa a IG mas... Como devo proceder com isso ai? Pasta do IL2? CH Manager??? :P :drunk:
21_Sokol1
Veterano
Veterano
Posts: 15493
Joined: 01 Aug 2003 21:00
Location: Uberaba-MG

Re: CH Pro Pedals

Post by 21_Sokol1 »

Iiii sei não, melhor perguntar para o BoB Church. :)

Bom, salva o arquivo como "ToeBrakes".cms numa pasta em Documentos, abre o Mannager, cria um mapa e importa este script, salve, caregue e teste.

Um "profile" do mannager contem 3 arquivos:

1 .map (mapa dos botões)

2 .cms (scripts)

3 .cmc (macros)

Sokol1
Post Reply