User:Jongyon7192p: Difference between revisions

From Ukikipedia
Jump to navigation Jump to search
No edit summary
Line 70: Line 70:


Approximated the speed cap to be 160. If mario can keep punching on the pillar for an extended 1 more frame, spd can reach 170 or more. i forgot my approximated 2nd value.
Approximated the speed cap to be 160. If mario can keep punching on the pillar for an extended 1 more frame, spd can reach 170 or more. i forgot my approximated 2nd value.
==WF Tower platform rotation displacement==
the tumbling bridge block rotates in a stupid way, but i managed to decompose its euler angle frequencies into parts. Turned out fucking useless cuz we could just fucking yeet ourselves or smth, idk, ask iwer.
and i'll try to summarize my block of text now.


'''Crouch Sliding:'''
'''Crouch Sliding:'''
Line 113: Line 107:


Speed - 5 + 3.4\*normal.H  (range: -5 ≤ accel < -1.6)
Speed - 5 + 3.4\*normal.H  (range: -5 ≤ accel < -1.6)
==WF Tower platform rotation displacement==
the tumbling bridge block rotates in a stupid way, but i managed to decompose its euler angle frequencies into parts. Turned out fucking useless cuz we could just fucking yeet ourselves or smth, idk, ask iwer.
and i'll try to summarize my block of text now.


==arctan strain==
==arctan strain==


All but proven at every math-skill level. Please implement it.
All but proven at every math-skill level. Please implement it.
==flight equations==
Update Pitch:
target = -stickY*v/5 (max=±12.8v)
pitchAccelTo0=64
pitchAccelTo∞=32
If crossed 0, cap |pitchVel1|<32 for 1f.
-------------------
Update Yaw:
target = -stickX*v/4 (max=±32v)
If target<0<      <yawVel      , |yawAccel|=64
if      <0<target<yawVel      , |yawAccel|=32
If      <0<      <yawVel<target, |yawAccel|=16
If crossed 0, cap |yawVel|<16 for 1f.
-------------------
a = -pitch/45° -.5[1-cos(yaw)] -1
cap v>=0
-------------------
Update Flying:
if  v>16, pitchVel2 =  6(v-32), Range: ( -96 ~  +∞ ] //positive if v>32
if 4<v≤16, pitchVel2 = 10(v-32), Range: (-280 ~ -160]
if  v≤ 4, pitchVel2 = -1024
cap |pitch|≤59.99634°
-------------------
if nullWall collision, pitchVel3 = -512


==lamulana==
==lamulana==

Revision as of 10:42, 19 July 2020

joystick angles

i made dis

this too

glitchy wall kicks [failure to analyze]

my first 4koma.

https://cdn.discordapp.com/attachments/267091914027696129/379482773507014656/unknown.png

walking

http://prntscr.com/eyjv0l

http://prntscr.com/eyjwbx

http://prntscr.com/expurf

http://prntscr.com/exptm4

http://prntscr.com/eyjyfn

sm64 1 key

This VCutM platform moves mario down just as mario flies into a PU. Since this isn't an OJ, this immediately upwarps mario into the surface of OoB water which conserves mario's speed AND voids him out back to the water of outside the castle WITHOUT killing him and putting him on land. Neat as fuck.

From the castle moat, mario reactivates his speed on land, and this is the PU route he goes to minimize his slow af turning time while still going down in Y position enough using slopes to touch the moat door back at the main map.

2336 ( 3,-3) +3,-3

2337 (14,-1) +11,+2

2354 ( 6, 3) -8,+4

2354 A (kill speed)

2356 A (kill speed)

2365 ( 0, 0) -6,-3

this is an OJ. no other explanation needed.

https://cdn.discordapp.com/attachments/309838966125756416/372970560696614916/unknown.png

oh boi, unit squares

Unit Squares

TTC Pendulum

https://cdn.discordapp.com/attachments/309838966125756416/349389479967981579/unknown.png

https://cdn.discordapp.com/attachments/309838966125756416/349389742409908225/unknown.png

holy shit

maaaan

cog misa

It's just a desmos graph.

ttm dr

Proved ttm DR is impossible without a breakthrough. Tyler Kehne then finds breakthrough.

bitfs 0x (wii vc)

Converges and reaches 0 after 2 or 3 months. Must find bad_boot's graph again to confirm.

jrb hsp

Approximated the speed cap to be 160. If mario can keep punching on the pillar for an extended 1 more frame, spd can reach 170 or more. i forgot my approximated 2nd value.

Crouch Sliding:

(1) the 10k glitch step

The fwd component of your joystick tilt is multiplied by (speed+100)/200. (It's intended that the result is your fwd component is halved or stays the same cuz your max slide speed should be 100 unit/f. But ofc, you hyperspeed, and you can do the 10k glitch.) We'll name this the "modified fwd".

(2) turn mario

based on the sideward component of stick tilt (which i define as "side"), rotate mario's velocity vector like this.

[ 1 0.05*side ] [velX]

[ -0.05*side 1 ] [velZ]

And then you do v\*oldSpd/newSpd for both x and z component, cuz the game wants to not change your speed. You can think about the implications of this yourself. (the max and min angle it can change depending on your speed, and other questions)

(3) update_sliding_angle

Your velocity vector is added by a vector of magnitude 7\*normal.H, pointing downhill.

Then the resulting vector is multiplied by the lossFactor, which is smth dumb defined by the slope type, and increases depending on the modified fwd. So this step does depend on your speed.

Finally, mario's facing angle changes by 2.8125 (360/128) degrees or less towards your velocity vector's angle.

C^ Sliding:

Speed - 4 + 1.7\*normal.H (range: -4 ≤ accel < -2.3)

HyperSpeed Punching:

Speed - 1 + 1.7\*normal.H (range: -1 ≤ accel < 0.7)

Effects Overlap for 1f between the C^ and the Punch:

Speed - 5 + 3.4\*normal.H (range: -5 ≤ accel < -1.6)

WF Tower platform rotation displacement

the tumbling bridge block rotates in a stupid way, but i managed to decompose its euler angle frequencies into parts. Turned out fucking useless cuz we could just fucking yeet ourselves or smth, idk, ask iwer.

and i'll try to summarize my block of text now.

arctan strain

All but proven at every math-skill level. Please implement it.

flight equations

Update Pitch:

target = -stickY*v/5 (max=±12.8v)

pitchAccelTo0=64 pitchAccelTo∞=32

If crossed 0, cap |pitchVel1|<32 for 1f.


Update Yaw:

target = -stickX*v/4 (max=±32v)

If target<0< <yawVel , |yawAccel|=64 if <0<target<yawVel , |yawAccel|=32 If <0< <yawVel<target, |yawAccel|=16

If crossed 0, cap |yawVel|<16 for 1f.


a = -pitch/45° -.5[1-cos(yaw)] -1 cap v>=0


Update Flying:

if v>16, pitchVel2 = 6(v-32), Range: ( -96 ~ +∞ ] //positive if v>32 if 4<v≤16, pitchVel2 = 10(v-32), Range: (-280 ~ -160] if v≤ 4, pitchVel2 = -1024

cap |pitch|≤59.99634°


if nullWall collision, pitchVel3 = -512

lamulana

https://clips.twitch.tv/FlirtyBrightKoalaVoteNay

http://prntscr.com/edhko5

misc

RLB was a bust anyway

nsfw meme

most definitely a good and sane opinion

https://cdn.discordapp.com/attachments/270777797138579457/344927706208796674/20170417_233514.jpg

https://pbs.twimg.com/media/CmU8RS8VMAAcWpW.jpg:large

me back when i was at a halloween party. it was ok.