Coder Social home page Coder Social logo

ndsrpg's Introduction

NDSRPG

An free/open-source RPG written in C/ARM assembly for the Nintendo DS

To clone the entire project you need to use git clone --recursive https://github.com/RevolutionSoftware/NDSRPG.git.

Coding-style:

C Standard: C11

C++ Standard: C++11

Tabs: 4-wide

Indentation: Tabs

Aligning: Tabs

Code should have a prefix-comment

e.g:

#include <stdio.h>
#include <stdint.h>

// function `fun` does _this_ and ~that~ ...
int32_t fun(uint32_t limit)
{
	for(int32_t i = 0; i < limit; ++i) {
		if (i % 2 == 0) {
			printf("%d is even\n", i);
		} else {
			printf("%d is odd\n", i);
		}
	}
	return 0;
}

ndsrpg's People

Contributors

chickendude avatar gpadd avatar

Watchers

James Cloos avatar  avatar  avatar

ndsrpg's Issues

Typewriter effect

Option for text to come up at a fast or slow pace depending on user settings.

Message/Event handling system

We will need a way to handle events like dialog advancing or for example if something triggers an event occurs.

I think we could use function pointers to implement this.. But I'm somewhat worried that it might be more work for the Nintendo DS (run-time stuff vs compile-time stuff) than if we were to do it a bit more complicated way (as if function pointers aren't complicated enough).
I guess we can't escape the fact that we need run-time checks though..

Animation looks...

Not good, we need to fix it to not look weird. It's like it's dragging it's feet along or something.

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.