Official Fulqrum Publishing forum

Official Fulqrum Publishing forum (http://forum.fulqrumpublishing.com/index.php)
-   IL-2 Sturmovik: Cliffs of Dover (http://forum.fulqrumpublishing.com/forumdisplay.php?f=189)
-   -   How is variable zoom done? (http://forum.fulqrumpublishing.com/showthread.php?t=31196)

justme262 04-17-2012 02:46 PM

Stublerone I don't know why you are switching to sight view when you have track IR?

Why don't you just lean in and look through the sight. Its the most natural thing in the world compared to hitting shift F1.

I just saw you disabled z axis of track IR and your hitting shift f1.... I can't imagine how you find it easier to hit shift f1 instead of just moving your head.
I hope your not in a wheel chair or have medical reasons why you can't move.

corchard 04-17-2012 03:09 PM

Quote:

Originally Posted by David198502 (Post 410260)
it is an option in the sim, unfortunately, it only works with mouse movement by default, therefore you need a third party software like joytokey, or if you have for example ch hardware, one can use ch-manager to achieve this kind of zoom as well.

Does anyone have any directions for how to do that in CH Control Manager?

Charlo

Stublerone 04-17-2012 03:19 PM

I have all axes enabled and that is okay so far. Leaning in is always a little too time consuming and especially in a bf109 with a revi out of the middle you have to look back to centre and lean totally accurate. If you are not fully centered in front of the revi, you will miss several shots. It simply takes too long. For me personally, the Shift+f1 should do nothing else than get a new center position for trackir in front of the revi. And it should not change its zoom.

In 1946 I flew nearly all the time in gunsightmode as soon as I had enemies nearby.

I mean, leanind around and make moves to accuratly fire on enemies is more difficult, than have a new center position and stick with the fact, that u are a little bit out of the middle for looking around.
These are two very similar setups on the first look, but it makes a very big difference. I personally cannot shoot down a plane with just one burst in a hard turning fight. In the old il2, this was very handy. U must also think, that trackir is a good tool ( i cannot live without it), but it is also very far from reality.

So this should be easier. I do not want to waste 3 burst, because my leaning is not accurate. In reality, I could manage it way better (not speaking about high g as influence). It is a small thing to change and it will do a lot for all of us, believe me! ;)

ATAG_Doc 04-17-2012 03:20 PM

Obtained this from someone else in here long ago.

- Launch JoyToKey (google for it, a lot of download sites): set one HAT position as "mouse up" and another as "mouse down";

- In CloD control settings, set this two HAT positions as "Hold To Adjusts Field of View" in "Camera" tab.

Done! Your HAT will provide +-FOV smooth transitions, as using mouse!

Stublerone 04-17-2012 03:27 PM

I have all axes enabled and that is okay so far. Leaning in is always a little too time consuming and especially in a bf109 with a revi out of the middle you have to look back to centre and lean totally accurate. If you are not fully centered in front of the revi, you will miss several shots. It simply takes too long. For me personally, the Shift+f1 should do nothing else than get a new center position for trackir in front of the revi. And it should not change its zoom.

In 1946 I flew nearly all the time in gunsightmode as soon as I had enemies nearby.

I mean, leanind around and make moves to accuratly fire on enemies is more difficult, than have a new center position and stick with the fact, that u are a little bit out of the middle for looking around.
These are two very similar setups on the first look, but it makes a very big difference. I personally cannot shoot down a plane with just one burst in a hard turning fight. In the old il2, this was very handy. U must also think, that trackir is a good tool ( i cannot live without it), but it is also very far from reality.

So this should be easier. I do not want to waste 3 burst, because my leaning is not accurate. In reality, I could manage it way better (not speaking about high g as influence). It is a small thing to change and it will do a lot for all of us, believe me! ;)

Artist 04-17-2012 03:27 PM

The Autohotkey solution (using the North/South of a POV hat), assuming that <Ctrl>+<Insert> ("Control Insert") is assigned to Camera, Keys, "Hold to adjust Field of View":

Code:

#Persistent
iIdStick = 1
SetTimer, watchPOV_Stick, 5

watchPOV_Stick:
    bFirst := true
    while(true){
        GetKeyState, iPOV, %iIdStick%JoyPOV  ; Get position of the POV control.

        ; Some joysticks might have a smooth/continous POV rather than one in fixed increments.
        ; To support them all, use a range:
        if iPOV < 0                                            ; No angle to report
            break
        else if (iPOV > 31500) OR (iPOV >= 0 AND iPOV < 4500){      ; 315 to 360 to 45 degrees: Forward
            zoomViewIn(bFirst)
            bFirst := false
        }
        else if (iPOV >= 13500) AND (iPOV <= 22500){          ; 135 to 180 to 225 degrees: Backward
            zoomViewOut(bFirst)
            bFirst := false
        }
        else
            break
    }
    return

zoomViewOut(bFirst){
    if(bFirst){
        MouseMove 0, 1200, 0
    }
    Send !{Insert down}
    MouseMove 0, -1, 0, R
    Send !{Insert up}
    return 0
}   
zoomViewIn(bFirst){
    if(bFirst){
        MouseMove 0, 0, 0
    }
    Send !{Insert down}
    MouseMove 0, 1, 0, R
    Send !{Insert up}
    return 0
}

Artist

ATAG_Doc 04-17-2012 03:32 PM

Everyone is pounding the website it wont load lol. Obviously a feature that is highly desired.

Stublerone 04-17-2012 03:54 PM

I have all axes enabled and that is okay so far. Leaning in is always a little too time consuming and especially in a bf109 with a revi out of the middle you have to look back to centre and lean totally accurate. If you are not fully centered in front of the revi, you will miss several shots. It simply takes too long. For me personally, the Shift+f1 should do nothing else than get a new center position for trackir in front of the revi. And it should not change its zoom.

In 1946 I flew nearly all the time in gunsightmode as soon as I had enemies nearby.

I mean, leanind around and make moves to accuratly fire on enemies is more difficult, than have a new center position and stick with the fact, that u are a little bit out of the middle for looking around.
These are two very similar setups on the first look, but it makes a very big difference. I personally cannot shoot down a plane with just one burst in a hard turning fight. In the old il2, this was very handy. U must also think, that trackir is a good tool ( i cannot live without it), but it is also very far from reality.

So this should be easier. I do not want to waste 3 burst, because my leaning is not accurate. In reality, I could manage it way better (not speaking about high g as influence). It is a small thing to change and it will do a lot for all of us, believe me! ;)

Baron 04-17-2012 04:43 PM

Quote:

Originally Posted by Stublerone (Post 410277)
I have to say that I am using trackIR and priority is not this zoom for me ( i have als different ways to make it work with t.a.r.g.e.t. or foxy on my tm warthog).

But main fact is that the zoom of the"free view" is not coordinated with switching into gunsight mode (with shift+f1 right???). Means, that i always fully zoom in the "REVI" and also get the limted viewing angle in this mode. So, if my enemy makes turns and rolls, I am stuck in this limited view. So I have to press "shift+f1" again to release this view. At this point at the latest, I get back into the old zoom from before and it makes weird movement, as you are already looking in a harder angle than allowed before in the gunsight view. I lose my enemy everytime, when I do this or even when i forget to release the view.

Am I playing with the wrong keys? I just heard others, who agreed with me in that point. So I am currently thinking, that it is like I described. Everybody feel free to help out, comment or even to vote in the tracker, if i am right!

This was up for discussion shortly after the release. Apparently the restricted view when using gunsight view is, a odd way imo, to simulate the fact the 109 pilots have to lean to the right and lean forward.

Dont ask me why or how they came up with this cuz i havent got a clue.


And i agree btw, its extremly anoying and abetrary.

David198502 04-17-2012 05:06 PM

Quote:

Originally Posted by corchard (Post 410298)
Does anyone have any directions for how to do that in CH Control Manager?

Charlo

yes there you go...i opened a thread on ch-hangar a while ago, and Bob was so kind to help me:
http://www.ch-hangar.com/forum/showt...mouse-movement


All times are GMT. The time now is 10:15 AM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright © 2007 Fulqrum Publishing. All rights reserved.