123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238 |
- /*
- * Copyright (c) Contributors, http://opensimulator.org/
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the OpenSimulator Project nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- // Revision by Ubit 2011/12
- using System;
- using System.Collections.Generic;
- using System.Reflection;
- using OpenMetaverse;
- using OpenSim.Framework;
- using OpenSim.Region.PhysicsModules.SharedBase;
- using log4net;
- namespace OpenSim.Region.PhysicsModule.ubOde
- {
- /// <summary>
- /// Various properties that ODE uses for AMotors but isn't exposed in ODE.NET so we must define them ourselves.
- /// </summary>
- public enum dParam:int
- {
- LowStop = 0,
- HiStop = 1,
- Vel = 2,
- FMax = 3,
- FudgeFactor = 4,
- Bounce = 5,
- CFM = 6,
- StopERP = 7,
- StopCFM = 8,
- LoStop2 = 256,
- HiStop2 = 257,
- Vel2 = 258,
- FMax2 = 259,
- StopERP2 = 7 + 256,
- StopCFM2 = 8 + 256,
- LoStop3 = 512,
- HiStop3 = 513,
- Vel3 = 514,
- FMax3 = 515,
- StopERP3 = 7 + 512,
- StopCFM3 = 8 + 512
- }
- public class OdeCharacter:PhysicsActor
- {
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- private Vector3 _position;
- private Vector3 _zeroPosition;
- private Vector3 _velocity;
- private Vector3 _target_velocity;
- private Vector3 _acceleration;
- private Vector3 m_rotationalVelocity;
- private Vector3 m_size;
- private Vector3 m_collideNormal;
- private Vector3 m_lastFallVel;
- private Quaternion m_orientation;
- private Quaternion m_orientation2D;
- private float m_mass = 80f;
- public float m_density = 60f;
- private bool m_pidControllerActive = true;
- public int m_bodydisablecontrol = 0;
- const float basePID_D = 0.55f; // scaled for unit mass unit time (2200 /(50*80))
- const float basePID_P = 0.225f; // scaled for unit mass unit time (900 /(50*80))
- public float PID_D;
- public float PID_P;
- private float timeStep;
- private float invtimeStep;
- private float m_feetOffset = 0;
- private float feetOff = 0;
- private float boneOff = 0;
- private float AvaAvaSizeXsq = 0.3f;
- private float AvaAvaSizeYsq = 0.2f;
- public float walkDivisor = 1.3f;
- public float runDivisor = 0.8f;
- private bool m_flying = false;
- private bool m_iscolliding = false;
- private bool m_iscollidingGround = false;
- private bool m_iscollidingObj = false;
- private bool m_alwaysRun = false;
- private bool _zeroFlag = false;
- private bool m_haveLastFallVel = false;
- private uint m_localID = 0;
- public bool m_returnCollisions = false;
- // taints and their non-tainted counterparts
- public bool m_isPhysical = false; // the current physical status
- public float MinimumGroundFlightOffset = 3f;
- private float m_buoyancy = 0f;
- private bool m_freemove = false;
- // private string m_name = String.Empty;
- // other filter control
- int m_colliderfilter = 0;
- int m_colliderGroundfilter = 0;
- int m_colliderObjectfilter = 0;
- // Default we're a Character
- private CollisionCategories m_collisionCategories = (CollisionCategories.Character);
- // Default, Collide with Other Geometries, spaces, bodies and characters.
- private CollisionCategories m_collisionFlags = (CollisionCategories.Character
- | CollisionCategories.Geom
- | CollisionCategories.VolumeDtc
- );
- // we do land collisions not ode | CollisionCategories.Land);
- public IntPtr Body = IntPtr.Zero;
- private ODEScene m_parent_scene;
- private IntPtr capsule = IntPtr.Zero;
- public IntPtr collider = IntPtr.Zero;
- public IntPtr Amotor = IntPtr.Zero;
- internal SafeNativeMethods.Mass ShellMass;
- public int m_eventsubscription = 0;
- private int m_cureventsubscription = 0;
- private CollisionEventUpdate CollisionEventsThisFrame = new CollisionEventUpdate();
- private bool SentEmptyCollisionsEvent;
- // unique UUID of this character object
- public UUID m_uuid;
- public bool bad = false;
- float mu;
- // HoverHeight control
- private float m_PIDHoverHeight;
- private float m_PIDHoverTau;
- private bool m_useHoverPID;
- private PIDHoverType m_PIDHoverType;
- private float m_targetHoverHeight;
- public OdeCharacter(uint localID,String avName,ODEScene parent_scene,Vector3 pos,Vector3 pSize,float pfeetOffset,float density,float walk_divisor,float rundivisor)
- {
- m_uuid = UUID.Random();
- m_localID = localID;
- m_parent_scene = parent_scene;
- timeStep = parent_scene.ODE_STEPSIZE;
- invtimeStep = 1 / timeStep;
- if(pos.IsFinite())
- {
- if(pos.Z > 99999f)
- {
- pos.Z = parent_scene.GetTerrainHeightAtXY(127,127) + 5;
- }
- if(pos.Z < -100f) // shouldn't this be 0 ?
- {
- pos.Z = parent_scene.GetTerrainHeightAtXY(127,127) + 5;
- }
- _position = pos;
- }
- else
- {
- _position = new Vector3(((float)m_parent_scene.WorldExtents.X * 0.5f),((float)m_parent_scene.WorldExtents.Y * 0.5f),parent_scene.GetTerrainHeightAtXY(128f,128f) + 10f);
- m_log.Warn("[PHYSICS]: Got NaN Position on Character Create");
- }
- m_size.X = pSize.X;
- m_size.Y = pSize.Y;
- m_size.Z = pSize.Z;
- if(m_size.X <0.01f)
- m_size.X = 0.01f;
- if(m_size.Y <0.01f)
- m_size.Y = 0.01f;
- if(m_size.Z <0.01f)
- m_size.Z = 0.01f;
- m_feetOffset = pfeetOffset;
- m_orientation = Quaternion.Identity;
- m_orientation2D = Quaternion.Identity;
- m_density = density;
- // force lower density for testing
- m_density = 3.0f;
- mu = m_parent_scene.AvatarFriction;
- walkDivisor = walk_divisor;
- runDivisor = rundivisor;
- m_mass = m_density * m_size.X * m_size.Y * m_size.Z;
- ; // sure we have a default
- PID_D = basePID_D * m_mass * invtimeStep;
- PID_P = basePID_P * m_mass * invtimeStep;
- m_isPhysical = false; // current status: no ODE information exists
- Name = avName;
- AddChange(changes.Add,null);
- }
- public override int PhysicsActorType
- {
- get
- {
- return (int)ActorTypes.Agent;
- }
- set
- {
- return;
- }
- }
- public override void getContactData(ref ContactData cdata)
- {
- cdata.mu = mu;
- cdata.bounce = 0;
- cdata.softcolide = false;
- }
- public override bool Building
- {
- get; set;
- }
- /// <summary>
- /// If this is set, the avatar will move faster
- /// </summary>
- public override bool SetAlwaysRun
- {
- get
- {
- return m_alwaysRun;
- }
- set
- {
- m_alwaysRun = value;
- }
- }
- public override uint LocalID
- {
- get
- {
- return m_localID;
- }
- set
- {
- m_localID = value;
- }
- }
- public override PhysicsActor ParentActor
- {
- get
- {
- return (PhysicsActor)this;
- }
- }
- public override bool Grabbed
- {
- set
- {
- return;
- }
- }
- public override bool Selected
- {
- set
- {
- return;
- }
- }
- public override float Buoyancy
- {
- get
- {
- return m_buoyancy;
- }
- set
- {
- m_buoyancy = value;
- }
- }
- public override bool FloatOnWater
- {
- set
- {
- return;
- }
- }
- public override bool IsPhysical
- {
- get
- {
- return m_isPhysical;
- }
- set
- {
- return;
- }
- }
- public override bool ThrottleUpdates
- {
- get
- {
- return false;
- }
- set
- {
- return;
- }
- }
- public override bool Flying
- {
- get
- {
- return m_flying;
- }
- set
- {
- m_flying = value;
- // m_log.DebugFormat("[PHYSICS]: Set OdeCharacter Flying to {0}", flying);
- }
- }
- /// <summary>
- /// Returns if the avatar is colliding in general.
- /// This includes the ground and objects and avatar.
- /// </summary>
- public override bool IsColliding
- {
- get
- {
- return (m_iscolliding || m_iscollidingGround);
- }
- set
- {
- if(value)
- {
- m_colliderfilter += 3;
- if(m_colliderfilter > 3)
- m_colliderfilter = 3;
- }
- else
- {
- m_colliderfilter--;
- if(m_colliderfilter < 0)
- m_colliderfilter = 0;
- }
- if(m_colliderfilter == 0)
- m_iscolliding = false;
- else
- {
- m_pidControllerActive = true;
- m_iscolliding = true;
- m_freemove = false;
- }
- }
- }
- /// <summary>
- /// Returns if an avatar is colliding with the ground
- /// </summary>
- public override bool CollidingGround
- {
- get
- {
- return m_iscollidingGround;
- }
- set
- {
- /* we now control this
- if (value)
- {
- m_colliderGroundfilter += 2;
- if (m_colliderGroundfilter > 2)
- m_colliderGroundfilter = 2;
- }
- else
- {
- m_colliderGroundfilter--;
- if (m_colliderGroundfilter < 0)
- m_colliderGroundfilter = 0;
- }
- if (m_colliderGroundfilter == 0)
- m_iscollidingGround = false;
- else
- m_iscollidingGround = true;
- */
- }
- }
- /// <summary>
- /// Returns if the avatar is colliding with an object
- /// </summary>
- public override bool CollidingObj
- {
- get
- {
- return m_iscollidingObj;
- }
- set
- {
- // Ubit filter this also
- if(value)
- {
- m_colliderObjectfilter += 2;
- if(m_colliderObjectfilter > 2)
- m_colliderObjectfilter = 2;
- }
- else
- {
- m_colliderObjectfilter--;
- if(m_colliderObjectfilter < 0)
- m_colliderObjectfilter = 0;
- }
- if(m_colliderObjectfilter == 0)
- m_iscollidingObj = false;
- else
- m_iscollidingObj = true;
- // m_iscollidingObj = value;
- if(m_iscollidingObj)
- m_pidControllerActive = false;
- else
- m_pidControllerActive = true;
- }
- }
- /// <summary>
- /// turn the PID controller on or off.
- /// The PID Controller will turn on all by itself in many situations
- /// </summary>
- /// <param name="status"></param>
- public void SetPidStatus(bool status)
- {
- m_pidControllerActive = status;
- }
- public override bool Stopped
- {
- get
- {
- return _zeroFlag;
- }
- }
- /// <summary>
- /// This 'puts' an avatar somewhere in the physics space.
- /// Not really a good choice unless you 'know' it's a good
- /// spot otherwise you're likely to orbit the avatar.
- /// </summary>
- public override Vector3 Position
- {
- get
- {
- return _position;
- }
- set
- {
- if(value.IsFinite())
- {
- if(value.Z > 9999999f)
- {
- value.Z = m_parent_scene.GetTerrainHeightAtXY(127,127) + 5;
- }
- if(value.Z < -100f)
- {
- value.Z = m_parent_scene.GetTerrainHeightAtXY(127,127) + 5;
- }
- AddChange(changes.Position,value);
- }
- else
- {
- m_log.Warn("[PHYSICS]: Got a NaN Position from Scene on a Character");
- }
- }
- }
- public override Vector3 RotationalVelocity
- {
- get
- {
- return m_rotationalVelocity;
- }
- set
- {
- m_rotationalVelocity = value;
- }
- }
- /// <summary>
- /// This property sets the height of the avatar only. We use the height to make sure the avatar stands up straight
- /// and use it to offset landings properly
- /// </summary>
- public override Vector3 Size
- {
- get
- {
- return m_size;
- }
- set
- {
- if(value.IsFinite())
- {
- if(value.X <0.01f)
- value.X = 0.01f;
- if(value.Y <0.01f)
- value.Y = 0.01f;
- if(value.Z <0.01f)
- value.Z = 0.01f;
- AddChange(changes.Size,value);
- }
- else
- {
- m_log.Warn("[PHYSICS]: Got a NaN Size from Scene on a Character");
- }
- }
- }
- public override void setAvatarSize(Vector3 size,float feetOffset)
- {
- if(size.IsFinite())
- {
- if(size.X < 0.01f)
- size.X = 0.01f;
- if(size.Y < 0.01f)
- size.Y = 0.01f;
- if(size.Z < 0.01f)
- size.Z = 0.01f;
- strAvatarSize st = new strAvatarSize();
- st.size = size;
- st.offset = feetOffset;
- AddChange(changes.AvatarSize,st);
- }
- else
- {
- m_log.Warn("[PHYSICS]: Got a NaN AvatarSize from Scene on a Character");
- }
- }
- /// <summary>
- /// This creates the Avatar's physical Surrogate at the position supplied
- /// </summary>
- /// <param name="npositionX"></param>
- /// <param name="npositionY"></param>
- /// <param name="npositionZ"></param>
- //
- /// <summary>
- /// Uses the capped cyllinder volume formula to calculate the avatar's mass.
- /// This may be used in calculations in the scene/scenepresence
- /// </summary>
- public override float Mass
- {
- get
- {
- return m_mass;
- }
- }
- public override void link(PhysicsActor obj)
- {
- }
- public override void delink()
- {
- }
- public override void LockAngularMotion(byte axislocks)
- {
- }
- public override Vector3 Force
- {
- get
- {
- return _target_velocity;
- }
- set
- {
- return;
- }
- }
- public override int VehicleType
- {
- get
- {
- return 0;
- }
- set
- {
- return;
- }
- }
- public override void VehicleFloatParam(int param,float value)
- {
- }
- public override void VehicleVectorParam(int param,Vector3 value)
- {
- }
- public override void VehicleRotationParam(int param,Quaternion rotation)
- {
- }
- public override void VehicleFlags(int param,bool remove)
- {
- }
- public override void SetVolumeDetect(int param)
- {
- }
- public override Vector3 CenterOfMass
- {
- get
- {
- Vector3 pos = _position;
- return pos;
- }
- }
- public override Vector3 GeometricCenter
- {
- get
- {
- Vector3 pos = _position;
- return pos;
- }
- }
- public override PrimitiveBaseShape Shape
- {
- set
- {
- return;
- }
- }
- public override Vector3 rootVelocity
- {
- get
- {
- return _velocity;
- }
- }
- public override Vector3 Velocity
- {
- get
- {
- return _velocity;
- }
- set
- {
- if(value.IsFinite())
- {
- AddChange(changes.Velocity,value);
- }
- else
- {
- m_log.Warn("[PHYSICS]: Got a NaN velocity from Scene in a Character");
- }
- }
- }
- public override Vector3 TargetVelocity
- {
- get
- {
- return m_targetVelocity;
- }
- set
- {
- if(value.IsFinite())
- {
- AddChange(changes.TargetVelocity,value);
- }
- else
- {
- m_log.Warn("[PHYSICS]: Got a NaN velocity from Scene in a Character");
- }
- }
- }
- public override Vector3 Torque
- {
- get
- {
- return Vector3.Zero;
- }
- set
- {
- return;
- }
- }
- public override float CollisionScore
- {
- get
- {
- return 0f;
- }
- set
- {
- }
- }
- public override bool Kinematic
- {
- get
- {
- return false;
- }
- set
- {
- }
- }
- public override Quaternion Orientation
- {
- get
- {
- return m_orientation;
- }
- set
- {
- // fakeori = value;
- // givefakeori++;
- value.Normalize();
- AddChange(changes.Orientation,value);
- }
- }
- public override Vector3 Acceleration
- {
- get
- {
- return _acceleration;
- }
- set
- {
- }
- }
- public void SetAcceleration(Vector3 accel)
- {
- m_pidControllerActive = true;
- _acceleration = accel;
- if (Body != IntPtr.Zero)
- SafeNativeMethods.BodyEnable(Body);
- }
- /// <summary>
- /// Adds the force supplied to the Target Velocity
- /// The PID controller takes this target velocity and tries to make it a reality
- /// </summary>
- /// <param name="force"></param>
- public override void AddForce(Vector3 force,bool pushforce)
- {
- if(force.IsFinite())
- {
- if(pushforce)
- {
- AddChange(changes.Force,force * m_density / (m_parent_scene.ODE_STEPSIZE * 28f));
- }
- else
- {
- AddChange(changes.TargetVelocity,force);
- }
- }
- else
- {
- m_log.Warn("[PHYSICS]: Got a NaN force applied to a Character");
- }
- //m_lastUpdateSent = false;
- }
- public override void AddAngularForce(Vector3 force,bool pushforce)
- {
- }
- public override void SetMomentum(Vector3 momentum)
- {
- if(momentum.IsFinite())
- AddChange(changes.Momentum,momentum);
- }
- private void AvatarGeomAndBodyCreation(float npositionX,float npositionY,float npositionZ)
- {
- // sizes one day should came from visual parameters
- float sx = m_size.X;
- float sy = m_size.Y;
- float sz = m_size.Z;
- float bot = -sz * 0.5f + m_feetOffset;
- boneOff = bot + 0.3f;
- float feetsz = sz * 0.45f;
- if(feetsz > 0.6f)
- feetsz = 0.6f;
- feetOff = bot + feetsz;
- AvaAvaSizeXsq = 0.4f * sx;
- AvaAvaSizeXsq *= AvaAvaSizeXsq;
- AvaAvaSizeYsq = 0.5f * sy;
- AvaAvaSizeYsq *= AvaAvaSizeYsq;
- m_parent_scene.waitForSpaceUnlock(m_parent_scene.CharsSpace);
- collider = SafeNativeMethods.SimpleSpaceCreate(m_parent_scene.CharsSpace);
- SafeNativeMethods.SpaceSetSublevel(collider,3);
- SafeNativeMethods.SpaceSetCleanup(collider,false);
- SafeNativeMethods.GeomSetCategoryBits(collider,(uint)m_collisionCategories);
- SafeNativeMethods.GeomSetCollideBits(collider,(uint)m_collisionFlags);
- float r = m_size.X;
- if(m_size.Y > r)
- r = m_size.Y;
- float l = m_size.Z - r;
- r *= 0.5f;
- capsule = SafeNativeMethods.CreateCapsule(collider,r,l);
- m_mass = m_density * m_size.X * m_size.Y * m_size.Z; // update mass
- SafeNativeMethods.MassSetBoxTotal(out ShellMass,m_mass,m_size.X,m_size.Y,m_size.Z);
- PID_D = basePID_D * m_mass / m_parent_scene.ODE_STEPSIZE;
- PID_P = basePID_P * m_mass / m_parent_scene.ODE_STEPSIZE;
- Body = SafeNativeMethods.BodyCreate(m_parent_scene.world);
- _zeroFlag = false;
- m_pidControllerActive = true;
- m_freemove = false;
- _velocity = Vector3.Zero;
- // SafeNativeMethods.BodySetAutoDisableFlag(Body,false);
- SafeNativeMethods.BodySetAutoDisableFlag(Body, true);
- m_bodydisablecontrol = 0;
- SafeNativeMethods.BodySetPosition(Body,npositionX,npositionY,npositionZ);
- _position.X = npositionX;
- _position.Y = npositionY;
- _position.Z = npositionZ;
- SafeNativeMethods.BodySetMass(Body,ref ShellMass);
- SafeNativeMethods.GeomSetBody(capsule,Body);
- // The purpose of the AMotor here is to keep the avatar's physical
- // surrogate from rotating while moving
- Amotor = SafeNativeMethods.JointCreateAMotor(m_parent_scene.world,IntPtr.Zero);
- SafeNativeMethods.JointAttach(Amotor,Body,IntPtr.Zero);
- SafeNativeMethods.JointSetAMotorMode(Amotor,0);
- SafeNativeMethods.JointSetAMotorNumAxes(Amotor,3);
- SafeNativeMethods.JointSetAMotorAxis(Amotor,0,0,1,0,0);
- SafeNativeMethods.JointSetAMotorAxis(Amotor,1,0,0,1,0);
- SafeNativeMethods.JointSetAMotorAxis(Amotor,2,0,0,0,1);
- SafeNativeMethods.JointSetAMotorAngle(Amotor,0,0);
- SafeNativeMethods.JointSetAMotorAngle(Amotor,1,0);
- SafeNativeMethods.JointSetAMotorAngle(Amotor,2,0);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.StopCFM,0f); // make it HARD
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.StopCFM2,0f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.StopCFM3,0f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.StopERP,0.8f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.StopERP2,0.8f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.StopERP3,0.8f);
- // These lowstops and high stops are effectively (no wiggle room)
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.LowStop,-1e-5f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.HiStop,1e-5f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.LoStop2,-1e-5f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.HiStop2,1e-5f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.LoStop3,-1e-5f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.HiStop3,1e-5f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)SafeNativeMethods.JointParam.Vel,0);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)SafeNativeMethods.JointParam.Vel2,0);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)SafeNativeMethods.JointParam.Vel3,0);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.FMax,5e8f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.FMax2,5e8f);
- SafeNativeMethods.JointSetAMotorParam(Amotor,(int)dParam.FMax3,5e8f);
- }
- /// <summary>
- /// Destroys the avatar body and geom
- private void AvatarGeomAndBodyDestroy()
- {
- // Kill the Amotor
- if(Amotor != IntPtr.Zero)
- {
- SafeNativeMethods.JointDestroy(Amotor);
- Amotor = IntPtr.Zero;
- }
- if(Body != IntPtr.Zero)
- {
- //kill the body
- SafeNativeMethods.BodyDestroy(Body);
- Body = IntPtr.Zero;
- }
- //kill the Geoms
- if(capsule != IntPtr.Zero)
- {
- m_parent_scene.actor_name_map.Remove(capsule);
- m_parent_scene.waitForSpaceUnlock(collider);
- SafeNativeMethods.GeomDestroy(capsule);
- capsule = IntPtr.Zero;
- }
- if(collider != IntPtr.Zero)
- {
- SafeNativeMethods.SpaceDestroy(collider);
- collider = IntPtr.Zero;
- }
- }
- //in place 2D rotation around Z assuming rot is normalised and is a rotation around Z
- public void RotateXYonZ(ref float x,ref float y,ref Quaternion rot)
- {
- float sin = 2.0f * rot.Z * rot.W;
- float cos = rot.W * rot.W - rot.Z * rot.Z;
- float tx = x;
- x = tx * cos - y * sin;
- y = tx * sin + y * cos;
- }
- public void RotateXYonZ(ref float x,ref float y,ref float sin,ref float cos)
- {
- float tx = x;
- x = tx * cos - y * sin;
- y = tx * sin + y * cos;
- }
- public void invRotateXYonZ(ref float x,ref float y,ref float sin,ref float cos)
- {
- float tx = x;
- x = tx * cos + y * sin;
- y = -tx * sin + y * cos;
- }
- public void invRotateXYonZ(ref float x,ref float y,ref Quaternion rot)
- {
- float sin = -2.0f * rot.Z * rot.W;
- float cos = rot.W * rot.W - rot.Z * rot.Z;
- float tx = x;
- x = tx * cos - y * sin;
- y = tx * sin + y * cos;
- }
- internal bool Collide(IntPtr me,IntPtr other,bool reverse,ref SafeNativeMethods.ContactGeom contact,
- ref SafeNativeMethods.ContactGeom altContact,ref bool useAltcontact,ref bool feetcollision)
- {
- feetcollision = false;
- useAltcontact = false;
- if(me == capsule)
- {
- Vector3 offset;
- float h = contact.pos.Z - _position.Z;
- offset.Z = h - feetOff;
- offset.X = contact.pos.X - _position.X;
- offset.Y = contact.pos.Y - _position.Y;
- SafeNativeMethods.GeomClassID gtype = SafeNativeMethods.GeomGetClass(other);
- if(gtype == SafeNativeMethods.GeomClassID.CapsuleClass)
- {
- Vector3 roff = offset * Quaternion.Inverse(m_orientation2D);
- float r = roff.X *roff.X / AvaAvaSizeXsq;
- r += (roff.Y * roff.Y) / AvaAvaSizeYsq;
- if(r > 1.0f)
- return false;
- float dp = 1.0f -(float)Math.Sqrt((double)r);
- if(dp > 0.05f)
- dp = 0.05f;
- contact.depth = dp;
- if(offset.Z < 0)
- {
- feetcollision = true;
- if(h < boneOff)
- {
- m_collideNormal.X = contact.normal.X;
- m_collideNormal.Y = contact.normal.Y;
- m_collideNormal.Z = contact.normal.Z;
- IsColliding = true;
- }
- }
- return true;
- }
- if(gtype == SafeNativeMethods.GeomClassID.SphereClass && SafeNativeMethods.GeomGetBody(other) != IntPtr.Zero)
- {
- if(SafeNativeMethods.GeomSphereGetRadius(other) < 0.5)
- return true;
- }
- if(offset.Z > 0 || contact.normal.Z > 0.35f)
- {
- if(offset.Z <= 0)
- {
- feetcollision = true;
- if(h < boneOff)
- {
- m_collideNormal.X = contact.normal.X;
- m_collideNormal.Y = contact.normal.Y;
- m_collideNormal.Z = contact.normal.Z;
- IsColliding = true;
- }
- }
- return true;
- }
- if(m_flying)
- return true;
- feetcollision = true;
- if(h < boneOff)
- {
- m_collideNormal.X = contact.normal.X;
- m_collideNormal.Y = contact.normal.Y;
- m_collideNormal.Z = contact.normal.Z;
- IsColliding = true;
- }
- altContact = contact;
- useAltcontact = true;
- offset.Z -= 0.2f;
- offset.Normalize();
- float tdp = contact.depth;
- float t = offset.X;
- t = Math.Abs(t);
- if(t > 1e-6)
- {
- tdp /= t;
- tdp *= contact.normal.X;
- }
- else
- tdp *= 10;
- if(tdp > 0.25f)
- tdp = 0.25f;
- altContact.depth = tdp;
- if(reverse)
- {
- altContact.normal.X = offset.X;
- altContact.normal.Y = offset.Y;
- altContact.normal.Z = offset.Z;
- }
- else
- {
- altContact.normal.X = -offset.X;
- altContact.normal.Y = -offset.Y;
- altContact.normal.Z = -offset.Z;
- }
- return true;
- }
- return false;
- }
- /// <summary>
- /// Called from Simulate
- /// This is the avatar's movement control + PID Controller
- /// </summary>
- /// <param name="timeStep"></param>
- public void Move()
- {
- if(Body == IntPtr.Zero)
- return;
- if (!SafeNativeMethods.BodyIsEnabled(Body))
- {
- if (++m_bodydisablecontrol < 50)
- return;
- // clear residuals
- SafeNativeMethods.BodySetAngularVel(Body, 0f, 0f, 0f);
- SafeNativeMethods.BodySetLinearVel(Body, 0f, 0f, 0f);
- _zeroFlag = true;
- SafeNativeMethods.BodyEnable(Body);
- }
- m_bodydisablecontrol = 0;
- SafeNativeMethods.Vector3 dtmp = SafeNativeMethods.BodyGetPosition(Body);
- Vector3 localpos = new Vector3(dtmp.X,dtmp.Y,dtmp.Z);
- // the Amotor still lets avatar rotation to drift during colisions
- // so force it back to identity
- SafeNativeMethods.Quaternion qtmp;
- qtmp.W = m_orientation2D.W;
- qtmp.X = m_orientation2D.X;
- qtmp.Y = m_orientation2D.Y;
- qtmp.Z = m_orientation2D.Z;
- SafeNativeMethods.BodySetQuaternion(Body,ref qtmp);
- if(m_pidControllerActive == false)
- {
- _zeroPosition = localpos;
- }
- // check outbounds forcing to be in world
- bool fixbody = false;
- float tmp = localpos.X;
- if ((Single.IsNaN(tmp) || Single.IsInfinity(tmp)))
- {
- fixbody = true;
- localpos.X = 128f;
- }
- else if (tmp < 0.0f)
- {
- fixbody = true;
- localpos.X = 0.1f;
- }
- else if (tmp > m_parent_scene.WorldExtents.X - 0.1f)
- {
- fixbody = true;
- localpos.X = m_parent_scene.WorldExtents.X - 0.1f;
- }
- tmp = localpos.Y;
- if ((Single.IsNaN(tmp) || Single.IsInfinity(tmp)))
- {
- fixbody = true;
- localpos.X = 128f;
- }
- else if (tmp < 0.0f)
- {
- fixbody = true;
- localpos.Y = 0.1f;
- }
- else if(tmp > m_parent_scene.WorldExtents.Y - 0.1)
- {
- fixbody = true;
- localpos.Y = m_parent_scene.WorldExtents.Y - 0.1f;
- }
- tmp = localpos.Z;
- if ((Single.IsNaN(tmp) || Single.IsInfinity(tmp)))
- {
- fixbody = true;
- localpos.Z = 128f;
- }
- if (fixbody)
- {
- m_freemove = false;
- SafeNativeMethods.BodySetPosition(Body,localpos.X,localpos.Y,localpos.Z);
- }
- float breakfactor;
- Vector3 vec = Vector3.Zero;
- dtmp = SafeNativeMethods.BodyGetLinearVel(Body);
- Vector3 vel = new Vector3(dtmp.X,dtmp.Y,dtmp.Z);
- float velLengthSquared = vel.LengthSquared();
- Vector3 ctz = _target_velocity;
- float movementdivisor = 1f;
- //Ubit change divisions into multiplications below
- if(!m_alwaysRun)
- movementdivisor = 1 / walkDivisor;
- else
- movementdivisor = 1 / runDivisor;
- ctz.X *= movementdivisor;
- ctz.Y *= movementdivisor;
- //******************************************
- // colide with land
- SafeNativeMethods.AABB aabb;
- // d.GeomGetAABB(feetbox, out aabb);
- SafeNativeMethods.GeomGetAABB(capsule,out aabb);
- float chrminZ = aabb.MinZ; // move up a bit
- Vector3 posch = localpos;
- float ftmp;
- if(m_flying)
- {
- ftmp = timeStep;
- posch.X += vel.X * ftmp;
- posch.Y += vel.Y * ftmp;
- }
- float terrainheight = m_parent_scene.GetTerrainHeightAtXY(posch.X,posch.Y);
- if(chrminZ < terrainheight)
- {
- if(ctz.Z < 0)
- ctz.Z = 0;
- if(!m_haveLastFallVel)
- {
- m_lastFallVel = vel;
- m_haveLastFallVel = true;
- }
- Vector3 n = m_parent_scene.GetTerrainNormalAtXY(posch.X,posch.Y);
- float depth = terrainheight - chrminZ;
- vec.Z = depth * PID_P * 50;
- if(!m_flying)
- {
- vec.Z += -vel.Z * PID_D;
- if(n.Z < 0.4f)
- {
- vec.X = depth * PID_P * 50 - vel.X * PID_D;
- vec.X *= n.X;
- vec.Y = depth * PID_P * 50 - vel.Y * PID_D;
- vec.Y *= n.Y;
- vec.Z *= n.Z;
- if(n.Z < 0.1f)
- {
- // cancel the slope pose
- n.X = 0f;
- n.Y = 0f;
- n.Z = 1.0f;
- }
- }
- }
- if(depth < 0.2f)
- {
- m_colliderGroundfilter++;
- if(m_colliderGroundfilter > 2)
- {
- m_iscolliding = true;
- m_colliderfilter = 2;
- if(m_colliderGroundfilter > 10)
- {
- m_colliderGroundfilter = 10;
- m_freemove = false;
- }
- m_collideNormal.X = n.X;
- m_collideNormal.Y = n.Y;
- m_collideNormal.Z = n.Z;
- m_iscollidingGround = true;
- ContactPoint contact = new ContactPoint();
- contact.PenetrationDepth = depth;
- contact.Position.X = localpos.X;
- contact.Position.Y = localpos.Y;
- contact.Position.Z = terrainheight;
- contact.SurfaceNormal.X = -n.X;
- contact.SurfaceNormal.Y = -n.Y;
- contact.SurfaceNormal.Z = -n.Z;
- contact.RelativeSpeed = Vector3.Dot(m_lastFallVel,n);
- contact.CharacterFeet = true;
- AddCollisionEvent(0,contact);
- m_lastFallVel = vel;
- // vec.Z *= 0.5f;
- }
- }
- else
- {
- m_colliderGroundfilter -= 5;
- if(m_colliderGroundfilter <= 0)
- {
- m_colliderGroundfilter = 0;
- m_iscollidingGround = false;
- }
- }
- }
- else
- {
- m_haveLastFallVel = false;
- m_colliderGroundfilter -= 5;
- if(m_colliderGroundfilter <= 0)
- {
- m_colliderGroundfilter = 0;
- m_iscollidingGround = false;
- }
- }
- bool hoverPIDActive = false;
- if(m_useHoverPID && m_PIDHoverTau != 0 && m_PIDHoverHeight != 0)
- {
- hoverPIDActive = true;
- switch(m_PIDHoverType)
- {
- case PIDHoverType.Ground:
- m_targetHoverHeight = terrainheight + m_PIDHoverHeight;
- break;
- case PIDHoverType.GroundAndWater:
- float waterHeight = m_parent_scene.GetWaterLevel();
- if(terrainheight > waterHeight)
- m_targetHoverHeight = terrainheight + m_PIDHoverHeight;
- else
- m_targetHoverHeight = waterHeight + m_PIDHoverHeight;
- break;
- } // end switch (m_PIDHoverType)
- // don't go underground
- if(m_targetHoverHeight > terrainheight + 0.5f * (aabb.MaxZ - aabb.MinZ))
- {
- float fz = (m_targetHoverHeight - localpos.Z);
- // if error is zero, use position control; otherwise, velocity control
- if(Math.Abs(fz) < 0.01f)
- {
- ctz.Z = 0;
- }
- else
- {
- _zeroFlag = false;
- fz /= m_PIDHoverTau;
- tmp = Math.Abs(fz);
- if(tmp > 50)
- fz = 50 * Math.Sign(fz);
- else if(tmp < 0.1)
- fz = 0.1f * Math.Sign(fz);
- ctz.Z = fz;
- }
- }
- }
- //******************************************
- if(!m_iscolliding)
- m_collideNormal.Z = 0;
- bool tviszero = (ctz.X == 0.0f && ctz.Y == 0.0f && ctz.Z == 0.0f);
- if(!tviszero)
- {
- m_freemove = false;
- // movement relative to surface if moving on it
- // dont disturbe vertical movement, ie jumps
- if(m_iscolliding && !m_flying && ctz.Z == 0 && m_collideNormal.Z > 0.2f && m_collideNormal.Z < 0.94f)
- {
- float p = ctz.X * m_collideNormal.X + ctz.Y * m_collideNormal.Y;
- ctz.X *= (float)Math.Sqrt(1 - m_collideNormal.X * m_collideNormal.X);
- ctz.Y *= (float)Math.Sqrt(1 - m_collideNormal.Y * m_collideNormal.Y);
- ctz.Z -= p;
- if(ctz.Z < 0)
- ctz.Z *= 2;
- }
- }
- if(!m_freemove)
- {
- // if velocity is zero, use position control; otherwise, velocity control
- if(tviszero)
- {
- if(m_iscolliding || m_flying)
- {
- // keep track of where we stopped. No more slippin' & slidin'
- if (!_zeroFlag)
- {
- _zeroFlag = true;
- _zeroPosition = localpos;
- }
- if(m_pidControllerActive)
- {
- // We only want to deactivate the PID Controller if we think we want to have our surrogate
- // react to the physics scene by moving it's position.
- // Avatar to Avatar collisions
- // Prim to avatar collisions
- vec.X = -vel.X * PID_D * 2f + (_zeroPosition.X - localpos.X) * (PID_P * 5);
- vec.Y = -vel.Y * PID_D * 2f + (_zeroPosition.Y - localpos.Y) * (PID_P * 5);
- if(vel.Z > 0)
- vec.Z += -vel.Z * PID_D + (_zeroPosition.Z - localpos.Z) * PID_P;
- else
- vec.Z += (-vel.Z * PID_D + (_zeroPosition.Z - localpos.Z) * PID_P) * 0.2f;
- }
- }
- else
- {
- _zeroFlag = false;
- vec.X += (ctz.X - vel.X) * PID_D * 0.833f;
- vec.Y += (ctz.Y - vel.Y) * PID_D * 0.833f;
- // hack for breaking on fall
- if (ctz.Z == -9999f)
- vec.Z += -vel.Z * PID_D - m_parent_scene.gravityz * m_mass;
- }
- }
- else
- {
- m_pidControllerActive = true;
- _zeroFlag = false;
- if(m_iscolliding)
- {
- if(!m_flying)
- {
- // we are on a surface
- if(ctz.Z > 0f)
- {
- // moving up or JUMPING
- vec.Z += (ctz.Z - vel.Z) * PID_D * 2f;
- vec.X += (ctz.X - vel.X) * (PID_D);
- vec.Y += (ctz.Y - vel.Y) * (PID_D);
- }
- else
- {
- // we are moving down on a surface
- if(ctz.Z == 0)
- {
- if(vel.Z > 0)
- vec.Z -= vel.Z * PID_D * 2f;
- vec.X += (ctz.X - vel.X) * (PID_D);
- vec.Y += (ctz.Y - vel.Y) * (PID_D);
- }
- // intencionally going down
- else
- {
- if(ctz.Z < vel.Z)
- vec.Z += (ctz.Z - vel.Z) * PID_D;
- else
- {
- }
- if(Math.Abs(ctz.X) > Math.Abs(vel.X))
- vec.X += (ctz.X - vel.X) * (PID_D);
- if(Math.Abs(ctz.Y) > Math.Abs(vel.Y))
- vec.Y += (ctz.Y - vel.Y) * (PID_D);
- }
- }
- // We're standing on something
- }
- else
- {
- // We're flying and colliding with something
- vec.X += (ctz.X - vel.X) * (PID_D * 0.0625f);
- vec.Y += (ctz.Y - vel.Y) * (PID_D * 0.0625f);
- vec.Z += (ctz.Z - vel.Z) * (PID_D * 0.0625f);
- }
- }
- else // ie not colliding
- {
- if(m_flying || hoverPIDActive) //(!m_iscolliding && flying)
- {
- // we're in mid air suspended
- vec.X += (ctz.X - vel.X) * (PID_D);
- vec.Y += (ctz.Y - vel.Y) * (PID_D);
- vec.Z += (ctz.Z - vel.Z) * (PID_D);
- }
- else
- {
- // we're not colliding and we're not flying so that means we're falling!
- // m_iscolliding includes collisions with the ground.
- // d.Vector3 pos = d.BodyGetPosition(Body);
- vec.X += (ctz.X - vel.X) * PID_D * 0.833f;
- vec.Y += (ctz.Y - vel.Y) * PID_D * 0.833f;
- // hack for breaking on fall
- if (ctz.Z == -9999f)
- vec.Z += -vel.Z * PID_D - m_parent_scene.gravityz * m_mass;
- }
- }
- }
- if(velLengthSquared > 2500.0f) // 50m/s apply breaks
- {
- breakfactor = 0.16f * m_mass;
- vec.X -= breakfactor * vel.X;
- vec.Y -= breakfactor * vel.Y;
- vec.Z -= breakfactor * vel.Z;
- }
- }
- else
- {
- breakfactor = m_mass;
- vec.X -= breakfactor * vel.X;
- vec.Y -= breakfactor * vel.Y;
- if(m_flying)
- vec.Z -= 0.5f * breakfactor * vel.Z;
- else
- vec.Z -= .16f* m_mass * vel.Z;
- }
- if(m_flying || hoverPIDActive)
- {
- vec.Z -= m_parent_scene.gravityz * m_mass;
- if(!hoverPIDActive)
- {
- //Added for auto fly height. Kitto Flora
- float target_altitude = terrainheight + MinimumGroundFlightOffset;
- if(localpos.Z < target_altitude)
- {
- vec.Z += (target_altitude - localpos.Z) * PID_P * 5.0f;
- }
- // end add Kitto Flora
- }
- }
- if(vec.IsFinite())
- {
- if((vec.X != 0 || vec.Y !=0 || vec.Z !=0))
- SafeNativeMethods.BodyAddForce(Body,vec.X,vec.Y,vec.Z);
- }
-
- // update our local ideia of position velocity and aceleration
- // _position = localpos;
- _position = localpos;
- if(_zeroFlag)
- {
- _velocity = Vector3.Zero;
- _acceleration = Vector3.Zero;
- m_rotationalVelocity = Vector3.Zero;
- }
- else
- {
- Vector3 a = _velocity; // previus velocity
- SetSmooth(ref _velocity,ref vel,2);
- a = (_velocity - a) * invtimeStep;
- SetSmooth(ref _acceleration,ref a,2);
- dtmp = SafeNativeMethods.BodyGetAngularVel(Body);
- m_rotationalVelocity.X = 0f;
- m_rotationalVelocity.Y = 0f;
- m_rotationalVelocity.Z = dtmp.Z;
- Math.Round(m_rotationalVelocity.Z,3);
- }
- }
- public void round(ref Vector3 v,int digits)
- {
- v.X = (float)Math.Round(v.X,digits);
- v.Y = (float)Math.Round(v.Y,digits);
- v.Z = (float)Math.Round(v.Z,digits);
- }
- public void SetSmooth(ref Vector3 dst,ref Vector3 value)
- {
- dst.X = 0.1f * dst.X + 0.9f * value.X;
- dst.Y = 0.1f * dst.Y + 0.9f * value.Y;
- dst.Z = 0.1f * dst.Z + 0.9f * value.Z;
- }
- public void SetSmooth(ref Vector3 dst,ref Vector3 value,int rounddigits)
- {
- dst.X = 0.4f * dst.X + 0.6f * value.X;
- dst.X = (float)Math.Round(dst.X,rounddigits);
- dst.Y = 0.4f * dst.Y + 0.6f * value.Y;
- dst.Y = (float)Math.Round(dst.Y,rounddigits);
- dst.Z = 0.4f * dst.Z + 0.6f * value.Z;
- dst.Z = (float)Math.Round(dst.Z,rounddigits);
- }
- /// <summary>
- /// Updates the reported position and velocity.
- /// Used to copy variables from unmanaged space at heartbeat rate and also trigger scene updates acording
- /// also outbounds checking
- /// copy and outbounds now done in move(..) at ode rate
- ///
- /// </summary>
- public void UpdatePositionAndVelocity()
- {
- return;
- // if (Body == IntPtr.Zero)
- // return;
- }
- /// <summary>
- /// Cleanup the things we use in the scene.
- /// </summary>
- public void Destroy()
- {
- AddChange(changes.Remove,null);
- }
- public override void CrossingFailure()
- {
- }
- public override Vector3 PIDTarget
- {
- set
- {
- return;
- }
- }
- public override bool PIDActive
- {
- get
- {
- return m_pidControllerActive;
- }
- set
- {
- return;
- }
- }
- public override float PIDTau
- {
- set
- {
- return;
- }
- }
- public override float PIDHoverHeight
- {
- set
- {
- AddChange(changes.PIDHoverHeight,value);
- }
- }
- public override bool PIDHoverActive
- {
- get
- {
- return m_useHoverPID;
- }
- set
- {
- AddChange(changes.PIDHoverActive,value);
- }
- }
- public override PIDHoverType PIDHoverType
- {
- set
- {
- AddChange(changes.PIDHoverType,value);
- }
- }
- public override float PIDHoverTau
- {
- set
- {
- float tmp = 0;
- if(value > 0)
- {
- float mint = (0.05f > timeStep ? 0.05f : timeStep);
- if(value < mint)
- tmp = mint;
- else
- tmp = value;
- }
- AddChange(changes.PIDHoverTau,tmp);
- }
- }
- public override Quaternion APIDTarget
- {
- set
- {
- return;
- }
- }
- public override bool APIDActive
- {
- set
- {
- return;
- }
- }
- public override float APIDStrength
- {
- set
- {
- return;
- }
- }
- public override float APIDDamping
- {
- set
- {
- return;
- }
- }
- public override void SubscribeEvents(int ms)
- {
- m_eventsubscription = ms;
- m_cureventsubscription = 0;
- CollisionEventsThisFrame.Clear();
- SentEmptyCollisionsEvent = false;
- }
- public override void UnSubscribeEvents()
- {
- m_eventsubscription = 0;
- m_parent_scene.RemoveCollisionEventReporting(this);
- lock(CollisionEventsThisFrame)
- CollisionEventsThisFrame.Clear();
- }
- public override void AddCollisionEvent(uint CollidedWith,ContactPoint contact)
- {
- lock(CollisionEventsThisFrame)
- CollisionEventsThisFrame.AddCollider(CollidedWith,contact);
- m_parent_scene.AddCollisionEventReporting(this);
- }
- public void SendCollisions(int timestep)
- {
- if(m_cureventsubscription < 50000)
- m_cureventsubscription += timestep;
- if(m_cureventsubscription < m_eventsubscription)
- return;
- if(Body != IntPtr.Zero && !SafeNativeMethods.BodyIsEnabled(Body))
- return;
- lock(CollisionEventsThisFrame)
- {
- int ncolisions = CollisionEventsThisFrame.m_objCollisionList.Count;
- if(!SentEmptyCollisionsEvent || ncolisions > 0)
- {
- base.SendCollisionUpdate(CollisionEventsThisFrame);
- m_cureventsubscription = 0;
- if(ncolisions == 0)
- {
- SentEmptyCollisionsEvent = true;
- // _parent_scene.RemoveCollisionEventReporting(this);
- }
- else
- {
- SentEmptyCollisionsEvent = false;
- CollisionEventsThisFrame.Clear();
- }
- }
- }
- }
- public override bool SubscribedEvents()
- {
- if(m_eventsubscription > 0)
- return true;
- return false;
- }
- private void changePhysicsStatus(bool NewStatus)
- {
- if(NewStatus != m_isPhysical)
- {
- if(NewStatus)
- {
- AvatarGeomAndBodyDestroy();
- AvatarGeomAndBodyCreation(_position.X,_position.Y,_position.Z);
- m_parent_scene.actor_name_map[capsule] = (PhysicsActor)this;
- m_parent_scene.AddCharacter(this);
- }
- else
- {
- m_parent_scene.RemoveCollisionEventReporting(this);
- m_parent_scene.RemoveCharacter(this);
- // destroy avatar capsule and related ODE data
- AvatarGeomAndBodyDestroy();
- }
- m_freemove = false;
- m_isPhysical = NewStatus;
- }
- }
- private void changeAdd()
- {
- changePhysicsStatus(true);
- }
- private void changeRemove()
- {
- changePhysicsStatus(false);
- }
- private void changeShape(PrimitiveBaseShape arg)
- {
- }
- private void changeAvatarSize(strAvatarSize st)
- {
- m_feetOffset = st.offset;
- changeSize(st.size);
- }
- private void changeSize(Vector3 pSize)
- {
- if(pSize.IsFinite())
- {
- // for now only look to Z changes since viewers also don't change X and Y
- if(pSize.Z != m_size.Z)
- {
- AvatarGeomAndBodyDestroy();
- float oldsz = m_size.Z;
- m_size = pSize;
- AvatarGeomAndBodyCreation(_position.X,_position.Y,
- _position.Z + (m_size.Z - oldsz) * 0.5f);
- // Velocity = Vector3.Zero;
- m_targetVelocity = Vector3.Zero;
- m_parent_scene.actor_name_map[capsule] = (PhysicsActor)this;
- }
- m_freemove = false;
- m_pidControllerActive = true;
- }
- else
- {
- m_log.Warn("[PHYSICS]: Got a NaN Size from Scene on a Character");
- }
- }
- private void changePosition(Vector3 newPos)
- {
- if(Body != IntPtr.Zero)
- {
- SafeNativeMethods.BodySetPosition(Body, newPos.X, newPos.Y, newPos.Z);
- SafeNativeMethods.BodyEnable(Body);
- }
- _position = newPos;
- m_freemove = false;
- m_pidControllerActive = true;
- }
- private void changeOrientation(Quaternion newOri)
- {
- if(m_orientation != newOri)
- {
- m_orientation = newOri; // keep a copy for core use
- // but only use rotations around Z
- m_orientation2D.W = newOri.W;
- m_orientation2D.Z = newOri.Z;
- float t = m_orientation2D.W * m_orientation2D.W + m_orientation2D.Z * m_orientation2D.Z;
- if(t > 0)
- {
- t = 1.0f / (float)Math.Sqrt(t);
- m_orientation2D.W *= t;
- m_orientation2D.Z *= t;
- }
- else
- {
- m_orientation2D.W = 1.0f;
- m_orientation2D.Z = 0f;
- }
- m_orientation2D.Y = 0f;
- m_orientation2D.X = 0f;
- if (Body != IntPtr.Zero)
- {
- SafeNativeMethods.Quaternion myrot = new SafeNativeMethods.Quaternion();
- myrot.X = m_orientation2D.X;
- myrot.Y = m_orientation2D.Y;
- myrot.Z = m_orientation2D.Z;
- myrot.W = m_orientation2D.W;
- SafeNativeMethods.BodySetQuaternion(Body,ref myrot);
- SafeNativeMethods.BodyEnable(Body);
- }
- }
- }
- private void changeVelocity(Vector3 newVel)
- {
- _velocity = newVel;
- setFreeMove();
- if (Body != IntPtr.Zero)
- {
- SafeNativeMethods.BodySetLinearVel(Body, newVel.X, newVel.Y, newVel.Z);
- SafeNativeMethods.BodyEnable(Body);
- }
- }
- private void changeTargetVelocity(Vector3 newVel)
- {
- m_pidControllerActive = true;
- m_freemove = false;
- _target_velocity = newVel;
- if (Body != IntPtr.Zero)
- SafeNativeMethods.BodyEnable(Body);
- }
- private void changeSetTorque(Vector3 newTorque)
- {
- }
- private void changeAddForce(Vector3 newForce)
- {
- }
- private void changeAddAngularForce(Vector3 arg)
- {
- }
- private void changeAngularLock(byte arg)
- {
- }
- private void changeFloatOnWater(bool arg)
- {
- }
- private void changeVolumedetetion(bool arg)
- {
- }
- private void changeSelectedStatus(bool arg)
- {
- }
- private void changeDisable(bool arg)
- {
- }
- private void changeBuilding(bool arg)
- {
- }
- private void setFreeMove()
- {
- m_pidControllerActive = true;
- _zeroFlag = false;
- _target_velocity = Vector3.Zero;
- m_freemove = true;
- m_colliderfilter = -1;
- m_colliderObjectfilter = -1;
- m_colliderGroundfilter = -1;
- m_iscolliding = false;
- m_iscollidingGround = false;
- m_iscollidingObj = false;
- CollisionEventsThisFrame.Clear();
- }
- private void changeForce(Vector3 newForce)
- {
- setFreeMove();
- if(Body != IntPtr.Zero)
- {
- if(newForce.X != 0f || newForce.Y != 0f || newForce.Z != 0)
- SafeNativeMethods.BodyAddForce(Body,newForce.X,newForce.Y,newForce.Z);
- SafeNativeMethods.BodyEnable(Body);
- }
- }
- // for now momentum is actually velocity
- private void changeMomentum(Vector3 newmomentum)
- {
- _velocity = newmomentum;
- setFreeMove();
- if(Body != IntPtr.Zero)
- {
- SafeNativeMethods.BodySetLinearVel(Body,newmomentum.X,newmomentum.Y,newmomentum.Z);
- SafeNativeMethods.BodyEnable(Body);
- }
- }
- private void changePIDHoverHeight(float val)
- {
- m_PIDHoverHeight = val;
- if(val == 0)
- m_useHoverPID = false;
- }
- private void changePIDHoverType(PIDHoverType type)
- {
- m_PIDHoverType = type;
- }
- private void changePIDHoverTau(float tau)
- {
- m_PIDHoverTau = tau;
- }
- private void changePIDHoverActive(bool active)
- {
- m_useHoverPID = active;
- }
- private void donullchange()
- {
- }
- public bool DoAChange(changes what,object arg)
- {
- if(collider == IntPtr.Zero && what != changes.Add && what != changes.Remove)
- {
- return false;
- }
- // nasty switch
- switch(what)
- {
- case changes.Add:
- changeAdd();
- break;
- case changes.Remove:
- changeRemove();
- break;
- case changes.Position:
- changePosition((Vector3)arg);
- break;
- case changes.Orientation:
- changeOrientation((Quaternion)arg);
- break;
- case changes.PosOffset:
- donullchange();
- break;
- case changes.OriOffset:
- donullchange();
- break;
- case changes.Velocity:
- changeVelocity((Vector3)arg);
- break;
- case changes.TargetVelocity:
- changeTargetVelocity((Vector3)arg);
- break;
- // case changes.Acceleration:
- // changeacceleration((Vector3)arg);
- // break;
- // case changes.AngVelocity:
- // changeangvelocity((Vector3)arg);
- // break;
- case changes.Force:
- changeForce((Vector3)arg);
- break;
- case changes.Torque:
- changeSetTorque((Vector3)arg);
- break;
- case changes.AddForce:
- changeAddForce((Vector3)arg);
- break;
- case changes.AddAngForce:
- changeAddAngularForce((Vector3)arg);
- break;
- case changes.AngLock:
- changeAngularLock((byte)arg);
- break;
- case changes.Size:
- changeSize((Vector3)arg);
- break;
- case changes.AvatarSize:
- changeAvatarSize((strAvatarSize)arg);
- break;
- case changes.Momentum:
- changeMomentum((Vector3)arg);
- break;
- case changes.PIDHoverHeight:
- changePIDHoverHeight((float)arg);
- break;
- case changes.PIDHoverType:
- changePIDHoverType((PIDHoverType)arg);
- break;
- case changes.PIDHoverTau:
- changePIDHoverTau((float)arg);
- break;
- case changes.PIDHoverActive:
- changePIDHoverActive((bool)arg);
- break;
- /* not in use for now
- case changes.Shape:
- changeShape((PrimitiveBaseShape)arg);
- break;
- case changes.CollidesWater:
- changeFloatOnWater((bool)arg);
- break;
- case changes.VolumeDtc:
- changeVolumedetetion((bool)arg);
- break;
- case changes.Physical:
- changePhysicsStatus((bool)arg);
- break;
- case changes.Selected:
- changeSelectedStatus((bool)arg);
- break;
- case changes.disabled:
- changeDisable((bool)arg);
- break;
- case changes.building:
- changeBuilding((bool)arg);
- break;
- */
- case changes.Null:
- donullchange();
- break;
- default:
- donullchange();
- break;
- }
- return false;
- }
- public void AddChange(changes what,object arg)
- {
- m_parent_scene.AddChange((PhysicsActor)this,what,arg);
- }
- private struct strAvatarSize
- {
- public Vector3 size;
- public float offset;
- }
- }
- }
|