Camera Help

ShadowSnipe4

New Member
Reaction score
4
I'm trying to get it so that the camera is put 32 units in front of "MoveUnit" and i have the camera script line that's giving me problems right here.
Code:
call SetCameraTargetControllerNoZForPlayer( Player (currentPlayer), udg_MoveUnit[currentPlayer + 1], 0, 0, true )
how would I get it so that it is just in front of the unit?
 
How would i incorporate that into the camera trigger though?
My problem was that it has only spots for the x and y axises no polar offset.
 
Hm... the simplest is probably to move a dummy unit at that spot and lock the camera on the dummy.


Other than that, well, there's some formulas:
x = distance * cosine(facing of unit)
y = distance * sine(facing of unit)

I have no idea though whether those produce the correct results in all 4 quadrants...
 
okay, I give up trying to do this on my own. Can anyone figure out why this isnt working? Its supposed to make the camera just in front of the unit at all times, but it doesnt work, it sometimes make the camera go underground, and sometimes over the walls, also with this on the hero wont move anymore, I think it has something to do with the actual camera dummy unit but its been giving me problems also.
Code:
function Trig_First_Person_View_Actions takes nothing returns nothing
    local integer currentPlayer = 0
    local unit currentUnit = null
    loop
        set currentUnit = udg_MoveUnit[currentPlayer + 1]
        if currentUnit != null then
        call SetCameraField(CAMERA_FIELD_ROTATION, GetUnitFacing(currentUnit), 0.20)
        call SetCameraField(CAMERA_FIELD_TARGET_DISTANCE, 100, 0.20)
        call SetCameraField(CAMERA_FIELD_ANGLE_OF_ATTACK, 3, 0.20)
        call SetCameraTargetControllerNoZForPlayer( Player (currentPlayer), udg_CameraUnit[currentPlayer + 1], 0, 0, false )
    endif
        set currentPlayer = currentPlayer + 1
        exitwhen currentPlayer > 9
    endloop
    set currentUnit = null
endfunction

//===========================================================================
function InitTrig_First_Person_View takes nothing returns nothing
    set gg_trg_First_Person_View = CreateTrigger(  )
    call TriggerRegisterTimerEventPeriodic( gg_trg_First_Person_View, 0.20 )
    call TriggerAddAction( gg_trg_First_Person_View, function Trig_First_Person_View_Actions )
endfunction

Code:
function Trig_First_Person_View_Target_Actions takes nothing returns nothing
    local integer currentPlayer = 0
    local unit currentUnit = null
    local location currentPosition = null
    local location positionToMoveTo = null
    local unit cameraUnit = null
    loop
        set currentUnit = udg_MoveUnit[currentPlayer + 1]
        set cameraUnit = udg_CameraUnit[currentPlayer + 1]
        if currentUnit != null then
        set currentPosition = GetUnitLoc(currentUnit)
        set positionToMoveTo = PolarProjectionBJ(currentPosition, 32, GetUnitFacing(currentUnit))
        endif
            call SetUnitPositionLocFacingBJ(udg_CameraUnit[currentPlayer + 1], positionToMoveTo, GetUnitFacing(currentUnit))
            call RemoveLocation(currentPosition)
            set currentPosition = null
            call RemoveLocation(positionToMoveTo)
            set positionToMoveTo = null
        set currentPlayer = currentPlayer + 1
        exitwhen currentPlayer > 9
    endloop
    set currentUnit = null
    set cameraUnit = null
endfunction

//===========================================================================
function InitTrig_First_Person_View_Target takes nothing returns nothing
    set gg_trg_First_Person_View_Target = CreateTrigger(  )
    call TriggerRegisterTimerEventPeriodic( gg_trg_First_Person_View_Target, 0.20 )
    call TriggerAddAction( gg_trg_First_Person_View_Target, function Trig_First_Person_View_Target_Actions )
endfunction




Also, heres the movement triggers if that helps.
Code:
function Trig_HeroMovement_Press takes nothing returns nothing
set udg_MoveActive[GetConvertedPlayerId(GetTriggerPlayer())] = true
endfunction

function Trig_HeroMovement_Release takes nothing returns nothing
set udg_MoveActive[GetConvertedPlayerId(GetTriggerPlayer())] = false
endfunction

function Trig_HeroMovement_Actions takes nothing returns nothing
    local integer currentPlayer = 0
    local unit currentUnit = null
    local location currentPosition = null
    local location positionToMoveTo = null
    local real offset = 0.0
    loop
        set currentUnit = udg_MoveUnit[currentPlayer + 1]
        if currentUnit != null and udg_MoveActive[currentPlayer + 1] then
        set currentPosition = GetUnitLoc(currentUnit)
        if udg_MoveActiveLeft[currentPlayer] then
        set offset = 20.0
        elseif udg_MoveActiveRight[currentPlayer] then
        set offset = -20.0
        endif
            set positionToMoveTo = PolarProjectionBJ(currentPosition, 128.0, GetUnitFacing(currentUnit) + offset)
            call RemoveLocation(currentPosition)
            set currentPosition = null
            set currentPosition = null
            call IssuePointOrderLoc(currentUnit, "move", positionToMoveTo)
            call RemoveLocation(positionToMoveTo)
            set positionToMoveTo = null
        endif
        set currentPlayer = currentPlayer + 1
        exitwhen currentPlayer > 9
        set offset = 0.0
    endloop
    set currentUnit = null
endfunction


//===========================================================================
function InitTrig_HeroMovement takes nothing returns nothing
    local trigger pressTrigger = CreateTrigger()
    local trigger releaseTrigger = CreateTrigger()
    set gg_trg_HeroMovement = CreateTrigger(  )
    call TriggerAddAction( gg_trg_HeroMovement, function Trig_HeroMovement_Actions )
    call TriggerAddAction( pressTrigger, function Trig_HeroMovement_Press )
    call TriggerAddAction( releaseTrigger, function Trig_HeroMovement_Release )
    call RegisterEventForAllPlayers(pressTrigger, EVENT_PLAYER_ARROW_UP_DOWN)
    call RegisterEventForAllPlayers(releaseTrigger, EVENT_PLAYER_ARROW_UP_UP)
    call TriggerRegisterTimerEventPeriodic(gg_trg_HeroMovement, 0.2)
endfunction

Code:
function Trig_HeroMovement_PressLeft takes nothing returns nothing
set udg_MoveActiveLeft[GetConvertedPlayerId(GetTriggerPlayer())] = true
endfunction

function Trig_HeroMovement_ReleaseLeft takes nothing returns nothing
set udg_MoveActiveLeft[GetConvertedPlayerId(GetTriggerPlayer())] = false
endfunction

function Trig_HeroMovementLeft_Actions takes nothing returns nothing
    local integer currentPlayer = 0
    local unit currentUnit = null
    loop
        set currentUnit = udg_MoveUnit[currentPlayer + 1]
        if currentUnit != null and udg_MoveActiveLeft[currentPlayer + 1] then
        call SetUnitFacing(currentUnit, GetUnitFacing(currentUnit) + 20.0)
        endif
        set currentPlayer = currentPlayer + 1
        exitwhen currentPlayer > 9
    endloop
    set currentUnit = null
endfunction


//===========================================================================
function InitTrig_HeroMovement_Turn_Left takes nothing returns nothing
    local trigger pressTrigger = CreateTrigger()
    local trigger releaseTrigger = CreateTrigger()
    set gg_trg_HeroMovement_Turn_Left = CreateTrigger(  )
    call TriggerAddAction( gg_trg_HeroMovement_Turn_Left, function Trig_HeroMovementLeft_Actions )
    call TriggerAddAction( pressTrigger, function Trig_HeroMovement_PressLeft )
    call TriggerAddAction( releaseTrigger, function Trig_HeroMovement_ReleaseLeft )
    call RegisterEventForAllPlayers(pressTrigger, EVENT_PLAYER_ARROW_LEFT_DOWN)
    call RegisterEventForAllPlayers(releaseTrigger, EVENT_PLAYER_ARROW_LEFT_UP)
    call TriggerRegisterTimerEventPeriodic(gg_trg_HeroMovement_Turn_Left, 0.2)
endfunction

Code:
function Trig_HeroMovement_PressRight takes nothing returns nothing
set udg_MoveActiveRight[GetConvertedPlayerId(GetTriggerPlayer())] = true
endfunction

function Trig_HeroMovement_ReleaseRight takes nothing returns nothing
set udg_MoveActiveRight[GetConvertedPlayerId(GetTriggerPlayer())] = false
endfunction

function Trig_HeroMovementRight_Actions takes nothing returns nothing
    local integer currentPlayer = 0
    local unit currentUnit = null
    loop
        set currentUnit = udg_MoveUnit[currentPlayer + 1]
        if currentUnit != null and udg_MoveActiveRight[currentPlayer + 1] then
        call SetUnitFacing(currentUnit, GetUnitFacing(currentUnit) - 20.0)
        endif
        set currentPlayer = currentPlayer + 1
        exitwhen currentPlayer > 9
    endloop
    set currentUnit = null
endfunction


//===========================================================================
function InitTrig_HeroMovement_Turn_Right takes nothing returns nothing
    local trigger pressTrigger = CreateTrigger()
    local trigger releaseTrigger = CreateTrigger()
    set gg_trg_HeroMovement_Turn_Right = CreateTrigger(  )
    call TriggerAddAction( gg_trg_HeroMovement_Turn_Right, function Trig_HeroMovementRight_Actions )
    call TriggerAddAction( pressTrigger, function Trig_HeroMovement_PressRight )
    call TriggerAddAction( releaseTrigger, function Trig_HeroMovement_ReleaseRight )
    call RegisterEventForAllPlayers(pressTrigger, EVENT_PLAYER_ARROW_RIGHT_DOWN)
    call RegisterEventForAllPlayers(releaseTrigger, EVENT_PLAYER_ARROW_RIGHT_UP)
    call TriggerRegisterTimerEventPeriodic(gg_trg_HeroMovement_Turn_Right, 0.2)
endfunction

Code:
function Trig_HeroMovement_Turn_Around_Actions takes nothing returns nothing
    local unit theUnit = udg_MoveUnit[GetConvertedPlayerId(GetTriggerPlayer())]
call SetUnitFacing( theUnit, GetUnitFacing(theUnit) + 180.0)
set theUnit = null 
endfunction


//===========================================================================
function InitTrig_HeroMovement_Turn_Around takes nothing returns nothing
    set gg_trg_HeroMovement_Turn_Around = CreateTrigger(  )
    call TriggerAddAction( gg_trg_HeroMovement_Turn_Around, function Trig_HeroMovement_Turn_Around_Actions )
    call RegisterEventForAllPlayers(gg_trg_HeroMovement_Turn_Around, EVENT_PLAYER_ARROW_DOWN_DOWN)
endfunction


Fogot to put the spawn trigger.
Code:
Get Marines
    Events
        Map initialization
    Conditions
    Actions
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Player 1 (Red) slot status) Equal to Is playing
            Then - Actions
                Unit - Create 1 Camera Target for Player 11 (Dark Green) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set MoveUnit[1] = (Last created unit)
                Unit - Create 1 Crew Member (In Combat Armor) for Player 1 (Red) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set CameraUnit[1] = (Last created unit)
            Else - Actions
                Do nothing
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Player 2 (Blue) slot status) Equal to Is playing
            Then - Actions
                Unit - Create 1 Crew Member (In Combat Armor) for Player 2 (Blue) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set MoveUnit[2] = (Last created unit)
                Unit - Create 1 Camera Target for Player 11 (Dark Green) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set CameraUnit[2] = (Last created unit)
            Else - Actions
                Do nothing
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Player 3 (Teal) slot status) Equal to Is playing
            Then - Actions
                Unit - Create 1 Crew Member (In Combat Armor) for Player 3 (Teal) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set MoveUnit[3] = (Last created unit)
                Unit - Create 1 Camera Target for Player 11 (Dark Green) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set CameraUnit[3] = (Last created unit)
            Else - Actions
                Do nothing
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Player 4 (Purple) slot status) Equal to Is playing
            Then - Actions
                Unit - Create 1 Crew Member (In Combat Armor) for Player 4 (Purple) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set MoveUnit[4] = (Last created unit)
                Unit - Create 1 Camera Target for Player 11 (Dark Green) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set CameraUnit[4] = (Last created unit)
            Else - Actions
                Do nothing
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Player 5 (Yellow) slot status) Equal to Is playing
            Then - Actions
                Unit - Create 1 Crew Member (In Combat Armor) for Player 5 (Yellow) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set MoveUnit[5] = (Last created unit)
                Unit - Create 1 Camera Target for Player 11 (Dark Green) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set CameraUnit[5] = (Last created unit)
            Else - Actions
                Do nothing
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Player 6 (Orange) slot status) Equal to Is playing
            Then - Actions
                Unit - Create 1 Crew Member (In Combat Armor) for Player 6 (Orange) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set MoveUnit[6] = (Last created unit)
                Unit - Create 1 Camera Target for Player 11 (Dark Green) at (Random point in Start Marines <gen>) facing Default building facing degrees
                Set CameraUnit[6] = (Last created unit)
            Else - Actions
                Do nothing

The variables i have in gui are: CameraUnit-Unit Array[10]-none-, MoveActive-boolian array[10]-false-, MoveActiveLeft-boolian array[10]-false-, MoveActiveRight-boolian array[10]-false-, MoveUnit-unit array[10]-none-.

if someone actually reads all of that and has an answer, I would greatly appreciate it.

EDIT: Also, theres a problem with going foreward right and foreward left. Its under the "Hero Movement" part.
 
My God...you expect someone to read ALL that? :p

-Ghoulfrenzy
 
I hope for someone to, I've been failing at getting this to work properly for days now. (the camera part at least)

You guys, thanks to whoever actually read all that but I GOT IT TO WORK!!! I cant believe that that entire time its because I set the unit for cameraUnit to the maring and the unit for moveUnit to the camera dummy...

Also, is there a way to set the camera Z offset? Its a little too close to the ground.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    Mayo also has vinegar. Vinegar is a very important part of it, it's effectively a delivery method FOR vinegar but hidden
    +1
  • Varine Varine:
    It's a neat ingredient. But yeah it's eggs. But a LOT of people think eggs count as dairy because of the fucking food pyramid the US keeps trying to make a thing
  • Varine Varine:
    I think on the new one they did change it, but idk. I don't really care whatever the government is doing right now because it's consistently absurd. Like what is RFK doing in charge of health anything? I love the bear story because WTF was that, but also, pretty much every time he talks it's WTF. Like even his voice sounds microwaved
    +1
  • Varine Varine:
    The pyramid is fucking dumb as shit, no matter how you arrange it.
  • Varine Varine:
    It's actually remarkably easy to make mayonnaise though. Fun fact, it USED to kind of be a French mother sauce. I believe that Careme considered it one, it may have been aioli but that has also built a different meaning than it used to. An aioli is just mayonnaise I mixed with other shit typically, I didn't start it don't come at me
  • Varine Varine:
    It's very hard to do it on a large scale though
  • Varine Varine:
    Depending on how you pour the oil the consistency can vary wildly, but that's true for most emulsions. I can only make about two quarts at a time with my robo coup, and if I have to make several in series because I forgot to order it becomes really obvious even when I do it. We have to wait and mix them all together to make sure we have the same thing.
  • Varine Varine:
    Hollandaise is also kind of like that, emulsions require a very steady hand to do exactly the same every time.
  • Varine Varine:
    Luckily I live in an age with electricity so it's way fucking faster, but when I was just a boy trying to find my place I had some hardcore chefs that made use do things like that by hand. It is WAY easier to get right by hand because you control it and can feel it, but it takes soooooo much longer. And on the scale a modern kitchen requires... I serve 400-500 guests on average per day right now, if I had 100 then we could do things way better
  • Varine Varine:
    But we can't do that. In the winter yeah, but I HAVE to get people through here right now so I can afford the staff that we CAN do that. We have about 100 days of summer, and if that summer doesn't make us what it will, then I can't operate the other most of the year with my staff. The owner is talking about closing two days a week to cut down on labor, I told him he should cut down on vacations and it did not go great. I do think I won though, I have to keep my fucking core staff and they have to be gainfully employed
  • Varine Varine:
    Sure some of them might take a second job, but I can't just cut my entire staff to unlivable hours, nor can I can cut them off all winter if I want them to come back.
  • Varine Varine:
    And also, there is no fucking way I'm pulling these hours come september. I only do this right now because I have to, the second I don't have to be the one doing it I won't be
  • Varine Varine:
    I have a 5 person core staff in the kitchen, not including me or Chef Ben
  • Varine Varine:
    Though two of those people are likely not making it this year. One of them has been replaced, the other I am kind of trying to. He's being a giant bitch, today I had to get onto him because in the three hours before I left he had taken like thirty minutes for cigarette breaks
  • Varine Varine:
    And he was also complaining to me the other day that he was out of weed so couldn't smoke any before work that day, and was confused about why I was annoyed he was telling me, his boss, that he is smoking weed everyday before work.
    +1
  • Varine Varine:
    Like yeah I can tell. I don't need to fucking know.
  • Varine Varine:
    So now he's getting scrutinized and will not be top of the list. I know I don't have the smartest people but I do expect them to have some common fucking sense
  • Varine Varine:
    I did do a rare thing for me and hire a girl last month without warning. Everyone was made at me because I started her at like 21, but she worked with me before and I was like don't care. She made 19 at her old job and I wanted her to come work with me, she is the best
    +1
  • Varine Varine:
    I'm going to get her a raise at the end of the summer. She wants to go to school again, but I want her to still work with me so.... she kind of can just tell me what the price is. I can go to 25 if she keeps up. I need to get her onto line more, that's what she wants, but I need her where she is and it's not fair that she doesn't get the little bit of raise that comes with it. She can do it no problem, I've worked with her there.
  • Varine Varine:
    It's just hard to move and train people unnecessarily right now. And also the line fucking sucks, it's not any more fun. This is turn and burn so I have the bankroll, and everyone suffers for it
  • Varine Varine:
    Eventually we'll get it balanced, we'
  • Varine Varine:
    we're starting online orders and stuff, but I also turn that off all the time because I barely keep up trying to be the best at Sysco shit
  • Varine Varine:
    I think it's gonna be a good fall and winter though. We're going to have a good staff, they will get along, they will be able to manage the workload and the complications, they know how to really cook this year, like every person on line knows their steak temps. Some of them use thermometers a lot and they don't always use them right, but they do know how to do it. Failure, especially in this field, is the only way to get better. They'll get it
  • Varine Varine:
    They won't get feel down while they do the thermometer, but we didn't have an instant read probe when I was learning. Like they did but god knows how off it is, you HAD to do it by feel. Even if the chef was fine with me bringing my own, it takes too long. Poke and know
  • The Helper The Helper:
    420 threads in the Artificial Intelligence forum :)

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials
      Top