redux-xstate-poc VS Dn-FamiTracker

Compare redux-xstate-poc vs Dn-FamiTracker and see what are their differences.

redux-xstate-poc

Manage your Redux side effects with XState. Use 100% of XState's features. (by mattpocock)

Dn-FamiTracker

modifications and improvements for 0CC-FamiTracker (based on j0CC-FamiTracker 0.6.3) (by Gumball2415)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
redux-xstate-poc Dn-FamiTracker
6 19
89 333
- 8.1%
2.6 7.7
over 2 years ago 8 days ago
TypeScript C
- GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

redux-xstate-poc

Posts with mentions or reviews of redux-xstate-poc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-14.
  • JavaScript State Machines and Statecharts
    8 projects | news.ycombinator.com | 14 May 2023
    Very doable, but not the most ideal syntax, since `createSlice` is focused on "here's an action / thing that happened, here's the reducer that handles that".

    On the flip side, you can also use XState state machines as Redux reducers. A state machine is, after all, a function that takes a current state value + some event, and returns a new state.... exactly the same as a reducer function!

    David and I have been saying for a while that we'd like to have a more official integration between XState and Redux. A while back, Matt Pocock put together an proof of concept for what a `createXStateSlice` might look like [1]. I actually sat down with David a couple weeks ago and we did some further design discussions about the possibility of using the `@xstate/fsm` package (a smaller version of XState's logic) as a starting point, and generating RTK actions based on that. No code yet, but it seems feasible.

    [0] https://dev.to/davidkpiano/redux-is-half-of-a-pattern-1-2-1h...

    [1] https://github.com/mattpocock/redux-xstate-poc

  • The new wave of React state management
    7 projects | /r/javascript | 2 Jul 2022
    23 projects | news.ycombinator.com | 2 Jul 2022
    Fun fact: one of the XState devs did a proof-of-concept showing how to use XState state machines as Redux reducers and integrate the side effects handling as a middleware:

    https://github.com/mattpocock/redux-xstate-poc

    We'd like to work together to turn that into a more official integration sometime soon.

  • Writing React components with State Machines.
    1 project | /r/reactjs | 24 Mar 2022
  • What does a large XState / Robot3 / FSM-based application architecture look like?
    1 project | /r/reactjs | 16 Oct 2021
    One of the XState devs recently posted https://github.com/mattpocock/redux-xstate-poc , an example of how you can integrate XState into a Redux app for use as a Redux slice reducer + side effects middleware
  • @xstate/redux: Official proposal for an XState middleware for Redux
    1 project | /r/reactjs | 20 Aug 2021

Dn-FamiTracker

Posts with mentions or reviews of Dn-FamiTracker. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-15.
  • Chiptune Program Suggestions?
    1 project | /r/chiptunes | 26 Jun 2023
    I've been using FamiTracker since 2017 and it no longer opens on my (Windows) computer. It just creates a dump file. After figuring out JSR was gone, I tried downloading Dn-FamiTracker 0.5.0.1, but the x64 and x86 versions just open an invisible window.
  • PSA: If you use DN-famitracker, don't upgrade to 0.5.0.1. That version is buggy and could potentially "soft-corrupt" modules.
    1 project | /r/chiptunes | 25 Jun 2023
  • what ??!?
    3 projects | /r/famitracker | 15 Jun 2023
    The original version of FamiTracker is no longer maintained and the website recently went offline, but most people are using the fork Dn-Famitracker these days - you can get it here. It's free software, so there are no restrictions on releasing music made with it commercially.
  • Difference between different versions\forks of famitracker?
    1 project | /r/famitracker | 20 May 2023
    Dn-Famitracker is the most relevant since it's the only one still in active development and has all the features from previous builds and then some. It's considered the definitive edition of Famitracker: https://github.com/Dn-Programming-Core-Management/Dn-FamiTracker/releases
  • How should I go about getting Famitracker now?
    1 project | /r/famitracker | 2 May 2023
    Most modern FTers are using a fork anyway, the current favourite is Dn-FamiTracker. All FamiTracker tutorials & resources should still work fine for you since the only differences are additions and updates for driver compatibility and such.
  • How do i download famitracker?
    1 project | /r/famitracker | 9 Feb 2023
    Go for Dn-Famitracker instead, it's a fork of the original famitracker with a few more features. Here's the github, if you're interested. https://github.com/Dn-Programming-Core-Management/Dn-FamiTracker
  • DN-Famitracker version 0.5.0.0 just released today
    1 project | /r/famitracker | 19 Dec 2022
  • Gameboy Doctor: debug and fix your gameboy emulator
    8 projects | news.ycombinator.com | 3 Dec 2022
    blip_buffer and blip_buf are fairly decent tools for generating an output-rate signal from a high-rate signal (though I use my fork of blip_buffer at https://gitlab.com/exotracker/blip-buffer-exo and/or https://github.com/Dn-Programming-Core-Management/Dn-FamiTra...). When emulating sound chips, the blip buffer adds and subtracts bandlimited sinc impulses from an output-rate delta array, and when exporting resampled audio, it performs a running sum (transforming the impulses into steps) of the delta array and high-passes the running value when writing to the output audio array. The advantage is that you can pick very high sampling rates (like 1.79 MHz) but only burn CPU cycles each time the output level changes (unlike conventional resamplers which are O(input rate + output rate)). Unfortunately blip_buffer has a relatively low SNR of ~50 dB of aliasing rejection even at its widest impulse kernel (as measured by https://gitlab.com/exotracker/exotracker-cpp/-/tree/rewrite-..., though possibly blip_buf is better), and only performs an approximate highpass using integer bitshifts. A usage example is at https://github.com/Dn-Programming-Core-Management/Dn-FamiTra....

    Alternatively you can generate a high-rate signal and feed it into a conventional resampler to produce a 44.1/48/96 KHz output. I found that libsamplerate (https://libsndfile.github.io/libsamplerate/)'s medium preset produces audibly transparent output at 44.1 KHz and above, and should have acceptable latency on the order of 1ms (I didn't verify but you could first flush out the startup edge effect with silence, pop all output, then push an impulse followed with silence until the central peak emerges from the output). This has minimal CPU usage for a single stereo 128 KHz input stream (like in exotracker and chipsynth SFC), but I don't know if it burns excessive CPU with 1.79 MHz input.

    ----

    My baseline expectation for production-quality emulators is to generate sound without aliasing, but the gold standard is to properly emulate the audio path as found on hardware, by feeding schematics through SPICE and/or pole-zero math to create an analytical representation of the filters, then verifying them against MDFourier tests (hardware recordings of broad-spectrum sound played by the console). Few emulators attempt to do this; according to https://bel.fi/alankila/modguide/interpolate.txt, UADE (an Amiga emulator) gets this right using a variation of the Blip_Buffer approach with longer precomputed(?) impulse responses specialized for Amiga filtering. Several chiptune tools properly model hardware filters, including the chipsynth family of audio VSTs (commercial); Dn-FamiTracker (an open-source NES composer) emulates FDS lowpass properly without aliasing, but only loosely approximates 2A03 lowpass and global highpass using blip_buffer's configurable filtering (impulse/step visualizer at https://gitlab.com/exotracker/exotracker-cpp/-/blob/rewrite-...).

    If you choose to model a hardware filter using IIR filters (mathematical arithmetic based off a hardware model) instead of a large precomputed impulse response (like interpolate.txt and UADE), you'll get more accurate results if you generate audio at a high internal sampling rate, IIR-filter the audio at this high rate (ensuring the filter cutoff is well below Nyquist or half the sampling rate), then feed it into a resampler. If you use Blip_Buffer to generate 44.1 or 48 KHz directly like blip_buffer, and apply a filter with cutoff above 10 KHz or so, high frequencies will not be filtered accurately.

    One interesting idea (combining blip_buffer's efficiency at handling sparse signals, and the accurate treble filtering enabled by a high intermediate filtering frequency) is running a blip_buffer-like system (with no highpass but a ~20 KHz lowpass) to downsample from a high internal rate to a fixed 128 KHz (for fixed filtering) or twice the audio rate (for efficient rational-factor downsampling), then performing hardware filtering there before downsampling using a resampler. The downside is that this stacks the latency and artifacts of both Blip_Buffer and the resampler, but if you make Blip_Buffer generate mostly-lowpassed audio and avoid generating nonlinear harmonics in filtering, you can use a faster second resampler that assumes its input is mostly lowpassed (using a narrower sinc kernel).

  • Do I need to install Git to use Dn-FamiTracker?
    2 projects | /r/chiptunes | 8 Nov 2022
    Correct Link: https://github.com/Dn-Programming-Core-Management/Dn-FamiTracker/releases/tag/Dn0.4.0.1
  • Irrelevant Destination (NES/Famicom 8bit 2A03)
    2 projects | /r/chiptunes | 13 Jul 2022
    Thank you! I'd recommend downloading Dn-Famitracker, it's the latest fork of the program that's been made, and features a few quality of life improvements from it's predecessors.

What are some alternatives?

When comparing redux-xstate-poc and Dn-FamiTracker you can also consider the following projects:

yieldmachine - Components for State Machines, using Generator Functions

0CC-FamiTracker - Extension of jsr's FamiTracker

devtools - Replay.io DevTools

E-FamiTracker - Extended FamiTracker, mod of Dn-FamiTracker.

vuex - 🗃️ Centralized State Management for Vue.js.

furnace - a multi-system chiptune tracker compatible with DefleMask modules

Dn-FamiTra

snestracker - Super Nintendo Entertainment System Music Software. Super Famicom Music Software

rfcs - RFCs for XState and Stately tools

Nes_Snd_Emu - NES / Famicom sound library, descended from blargg's Nes_Snd_Emu

redux-easy-mode - A very easy to understand and use set of tools for Redux. Includes action builders, reducer builders, side-effect middleware, and async actions.

Mesen - Mesen is a cross-platform (Windows & Linux) NES/Famicom emulator built in C++ and C#