Coder Social home page Coder Social logo

[feature] Real time about wasm4 HOT 7 OPEN

aduros avatar aduros commented on May 21, 2024 6
[feature] Real time

from wasm4.

Comments (7)

binji avatar binji commented on May 21, 2024

I've wanted this too. Right now both of my games initialize the PRNG with a fixed number, but it would be nice to seed with time. (I don't see the seed described above).

The time could be an imported function, but it might be nice to have it directly in memory too.

from wasm4.

joshgoebel avatar joshgoebel commented on May 21, 2024

Right now both of my games initialize the PRNG with a fixed number

You can count frames and seed it with timing information from the first few buttons presses... most things have a startup sequence (title screen, etc) that allows you to get some entropy from that...

I second that this would be useful though for idle games... so someone could leave the game and come back later and the game would update their progress based on them being gone 2 days, etc...

from wasm4.

joshgoebel avatar joshgoebel commented on May 21, 2024

I'd vote that we minimally have access to "milliseconds* since the Unix Epoch", ie in JS:

new Date().getTime()

(and whatever the equivalent is native...)

What some other consoles are doing:

from wasm4.

jakeledoux avatar jakeledoux commented on May 21, 2024

so someone could leave the game and come back later and the game would update their progress based on them being gone 2 days, etc...

Somebody has gotta make an Animal Crossing clone for WASM-4!

from wasm4.

hrobeers avatar hrobeers commented on May 21, 2024

I had an issue with the inconsistent framerate and missing timing functionality.
I tried a hack to mix colors by switching palettes but due to the inconsistent framerate it flickers a lot (even on the simplest example: https://gist.github.com/hrobeers/a72bb460e1ce9be8a2aebed82d66fa91).
This flickering can might cool to use for some effects, so maybe the inconsistent framerate should be an official "hardware spec".

In order to be able to mix colors a working timing functionality could help reduce the flickering. As I seem to understand this is a WASI limitation? I have some emscripten projects that use C++ <chrono> without issues.

Great project BTW, I really love the wasm base for a fantasy console!

from wasm4.

joshgoebel avatar joshgoebel commented on May 21, 2024

The frame timing all needs to be done on the "outside" (with the host OS, etc), since your code is only running via callback. There are lots of reasons to add timing, but frame rate consistency isn't one of them.

from wasm4.

hrobeers avatar hrobeers commented on May 21, 2024

The frame timing all needs to be done on the "outside" (with the host OS, etc), since your code is only running via callback. There are lots of reasons to add timing, but frame rate consistency isn't one of them.

Oh yes I agree with that. I was hoping to use timing to be able to mix the colors at a lower rate based on time passed but I realize this would be flickering even more. Thanks for your reply.

from wasm4.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.