Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 6659 6660 [6661] 6662 6663 ... 11055

Author Topic: Things that made you go "WTF?" today o_O  (Read 14841445 times)

redwallzyl

  • Bay Watcher
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99900 on: April 02, 2016, 06:26:17 pm »

its snowing. wat.
Logged

Solifuge

  • Bay Watcher
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99901 on: April 02, 2016, 06:36:20 pm »

I friggin' know! Learn to Spring, weather. 9_9

On the plus side, I went for a walk in the snow and really enjoyed it. Might be the last one of the season, so I'm enjoying it while it lasts.
Logged

Amperzand

  • Bay Watcher
  • Knight of Cerebus
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99902 on: April 02, 2016, 09:28:58 pm »

Where I live, it's unseasonably warm and dry, being usually expected to basically rain until july and then start again on september first.
Logged
Muh FG--OOC Thread
Quote from: smirk
Quote from: Shadowlord
Is there a word that combines comedy with tragedy and farce?
Heiterverzweiflung. Not a legit German word so much as something a friend and I made up in German class once. "Carefree despair". When life is so fucked that you can't stop laughing.
http://www.collinsdictionary.com

Putnam

  • Bay Watcher
  • DAT WIZARD
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99903 on: April 03, 2016, 12:21:07 am »

Super Metroid uses 32-bit fixed point numbers to represent Samus's velocity. Here's the preliminary (I haven't had time to experiment on how direction works, whether the whole shebang is signed or I'll have to look at another flag to determine) implementation of that in SMHack:

Code: [Select]
{x=(memory.read_u16_le(0xB42)+(memory.read_u16_le(0xB44)/0x10000)),y=memory.read_u16_le(0xB2E)+(memory.read_u16_le(0xB2C)/0x10000)}
Now, you may notice something.

These aren't actually a 32-bit number. They're each a pair of 16-bit numbers. Now, this is completely expected from a fixed-point number; 16 bits are the part after the decimal point and 16 are the port before.

But what's actually odd about it is the fact that which one is which is different for each dimension. For x, the number 32.125 in the x dimension would be this in binary:

0000000000100000 0010000000000000

And in the y dimension like this:

0010000000000000 0000000000100000

why.
« Last Edit: April 03, 2016, 12:23:31 am by Putnam »
Logged

Orange Wizard

  • Bay Watcher
  • mou ii yo
    • View Profile
    • S M U G
Re: Things that made you go "WTF?" today o_O
« Reply #99904 on: April 03, 2016, 12:34:52 am »

Wooooot
Logged
Please don't shitpost, it lowers the quality of discourse
Hard science is like a sword, and soft science is like fear. You can use both to equally powerful results, but even if your opponent disbelieve your stabs, they will still die.

Bauglir

  • Bay Watcher
  • Let us make Good
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99905 on: April 03, 2016, 12:36:10 am »

Logged
In the days when Sussman was a novice, Minsky once came to him as he sat hacking at the PDP-6.
“What are you doing?”, asked Minsky. “I am training a randomly wired neural net to play Tic-Tac-Toe” Sussman replied. “Why is the net wired randomly?”, asked Minsky. “I do not want it to have any preconceptions of how to play”, Sussman said.
Minsky then shut his eyes. “Why do you close your eyes?”, Sussman asked his teacher.
“So that the room will be empty.”
At that moment, Sussman was enlightened.

Furtuka

  • Bay Watcher
  • High Priest of Mecha
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99906 on: April 03, 2016, 12:41:33 am »

miitomo is the greatest shitpost simulator of all time
Logged
It's FEF, not FEOF

Tiruin

  • Bay Watcher
  • Life is too short for worries
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99907 on: April 03, 2016, 12:44:08 am »

-snop-
what the actual fuck
I wish I understood that as well as it was written because that looks pretty amazing! ;_;
And now I'm on a tangent remembering the paradoxes of the philosophers of old <_< My memory is silly and fun.
The only way to stop me is to give me a puzzle on the same level of the Gordian knot. I:
Logged

hector13

  • Bay Watcher
  • It’s shite being Scottish
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99908 on: April 03, 2016, 12:53:13 am »

-snop-
what the actual fuck
I wish I understood that as well as it was written because that looks pretty amazing! ;_;
And now I'm on a tangent remembering the paradoxes of the philosophers of old <_< My memory is silly and fun.
The only way to stop me is to give me a puzzle on the same level of the Gordian knot. I:

4096
Logged
Look, we need to raise a psychopath who will murder God, we have no time to be spending on cooking.

the way your fingertips plant meaningless soliloquies makes me think you are the true evil among us.

Putnam

  • Bay Watcher
  • DAT WIZARD
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99909 on: April 03, 2016, 12:58:15 am »

well that only really teaches you about powers of 2 when the problem i'm describing is really more one of endianness... well, not really endianness as much as getting which pair of bytes is the more significant inconsistent due I guess to working in assembly on a system where floating points are slow as hell and you don't want to use them for the movement of your player character in a 60FPS game, but it bears some slight resemblance to endian issues

hector13

  • Bay Watcher
  • It’s shite being Scottish
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99910 on: April 03, 2016, 01:10:07 am »

It was more for Tiruin's mention of asking for a complex game. I have no idea about anything you just said :))
Logged
Look, we need to raise a psychopath who will murder God, we have no time to be spending on cooking.

the way your fingertips plant meaningless soliloquies makes me think you are the true evil among us.

Eric Blank

  • Bay Watcher
  • *Remain calm*
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99911 on: April 03, 2016, 01:37:25 am »

I am so goddamn confused i swear computers just make less sense the more I actually read about their function.
Clearly Putnam is a literal wizard. This coding bullshit is just a bunch of magic mumbo-jumbo.
Logged
I make Spellcrafts!
I have no idea where anything is. I have no idea what anything does. This is not merely a madhouse designed by a madman, but a madhouse designed by many madmen, each with an intense hatred for the previous madman's unique flavour of madness.

Descan

  • Bay Watcher
  • [HEADING INTENSIFIES]
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99912 on: April 03, 2016, 01:45:34 am »

computers are just electrified math

i guess that's technically magic

i mean a lot of magic systems in fiction use language, and math's another language

and electricity figures a lot in them too

so yeah, computers are magic
Logged
Quote from: SalmonGod
Your innocent viking escapades for canadian social justice and immortality make my flagellum wiggle, too.
Quote from: Myroc
Descan confirmed for antichrist.
Quote from: LeoLeonardoIII
I wonder if any of us don't love Descan.

SalmonGod

  • Bay Watcher
  • Nyarrr
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99913 on: April 03, 2016, 02:42:04 am »

computers are just electrified math

i guess that's technically magic

i mean a lot of magic systems in fiction use language, and math's another language

and electricity figures a lot in them too

so yeah, computers are magic

Descan... your logic is magic.  Have an internet.
Logged
In the land of twilight, under the moon
We dance for the idiots
As the end will come so soon
In the land of twilight

Maybe people should love for the sake of loving, and not with all of these optimization conditions.

Sergarr

  • Bay Watcher
  • (9) airheaded baka (9)
    • View Profile
Re: Things that made you go "WTF?" today o_O
« Reply #99914 on: April 03, 2016, 04:15:27 am »

I don't like using floating points at all, especially in chaotic situations. My experience tells me that, despite some claims to the contrary, they do not tend to do the same thing when they run. There's always some stochastic component. And that can fuck up way too many things for it to be worth it. If you really need it, you can just simulate it with integers, which are almost completely reliable and ain't prone to randomness.
Logged
._.
Pages: 1 ... 6659 6660 [6661] 6662 6663 ... 11055