commit:6d75d8b333417f287ea447bca42926fd39061793
author:Chip Black
committer:Chip Black
date:Tue Apr 1 22:40:27 2008 -0500
parents:
Initial import
diff --git a/Makefile b/Makefile
line changes: +43/-0
index 0000000..5c66934
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,43 @@
+#---------------------------------------------------------------------------------
+.SUFFIXES:
+#---------------------------------------------------------------------------------
+ifeq ($(strip $(DEVKITARM)),)
+$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM)
+endif
+
+include $(DEVKITARM)/ds_rules
+
+export TARGET		:=	$(shell basename $(CURDIR))
+export TOPDIR		:=	$(CURDIR)
+
+
+.PHONY: $(TARGET).arm7 $(TARGET).arm9
+
+#---------------------------------------------------------------------------------
+# main targets
+#---------------------------------------------------------------------------------
+all: $(TARGET).ds.gba
+
+$(TARGET).ds.gba	: $(TARGET).nds
+
+#---------------------------------------------------------------------------------
+$(TARGET).nds	:	$(TARGET).arm7 $(TARGET).arm9
+	ndstool	-c $(TARGET).nds -7 $(TARGET).arm7 -9 $(TARGET).arm9
+
+#---------------------------------------------------------------------------------
+$(TARGET).arm7	: arm7/$(TARGET).elf
+$(TARGET).arm9	: arm9/$(TARGET).elf
+
+#---------------------------------------------------------------------------------
+arm7/$(TARGET).elf:
+	$(MAKE) -C arm7
+	
+#---------------------------------------------------------------------------------
+arm9/$(TARGET).elf:
+	$(MAKE) -C arm9
+
+#---------------------------------------------------------------------------------
+clean:
+	$(MAKE) -C arm9 clean
+	$(MAKE) -C arm7 clean
+	rm -f $(TARGET).ds.gba $(TARGET).nds $(TARGET).arm7 $(TARGET).arm9

diff --git a/arm7/Makefile b/arm7/Makefile
line changes: +132/-0
index 0000000..7d63afa
--- /dev/null
+++ b/arm7/Makefile
@@ -0,0 +1,132 @@
+#---------------------------------------------------------------------------------
+.SUFFIXES:
+#---------------------------------------------------------------------------------
+ifeq ($(strip $(DEVKITARM)),)
+$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
+endif
+
+include $(DEVKITARM)/ds_rules
+
+#---------------------------------------------------------------------------------
+# BUILD is the directory where object files & intermediate files will be placed
+# SOURCES is a list of directories containing source code
+# INCLUDES is a list of directories containing extra header files
+# DATA is a list of directories containing binary files
+# all directories are relative to this makefile
+#---------------------------------------------------------------------------------
+BUILD		:=	build
+SOURCES		:=	source  
+INCLUDES	:=	include build
+DATA		:=
+ 
+#---------------------------------------------------------------------------------
+# options for code generation
+#---------------------------------------------------------------------------------
+ARCH	:=	-mthumb-interwork
+
+CFLAGS	:=	-g -Wall -O2\
+		-mcpu=arm7tdmi -mtune=arm7tdmi -fomit-frame-pointer\
+		-ffast-math \
+		$(ARCH)
+
+CFLAGS	+=	$(INCLUDE) -DARM7
+CXXFLAGS	:=	$(CFLAGS) -fno-rtti -fno-exceptions -fno-rtti
+
+
+ASFLAGS	:=	-g $(ARCH)
+LDFLAGS	=	-specs=ds_arm7.specs -g $(ARCH) -Wl,-Map,$(notdir $*).map
+
+LIBS	:=	-lnds7
+
+#---------------------------------------------------------------------------------
+# list of directories containing libraries, this must be the top level containing
+# include and lib
+#---------------------------------------------------------------------------------
+LIBDIRS	:=	$(LIBNDS)
+ 
+  
+#---------------------------------------------------------------------------------
+# no real need to edit anything past this point unless you need to add additional
+# rules for different file extensions
+#---------------------------------------------------------------------------------
+ifneq ($(BUILD),$(notdir $(CURDIR)))
+#---------------------------------------------------------------------------------
+ 
+export ARM7BIN	:=	$(TOPDIR)/$(TARGET).arm7
+export ARM7ELF	:=	$(CURDIR)/$(TARGET).arm7.elf
+export DEPSDIR	:=	$(CURDIR)/$(BUILD)
+
+export VPATH	:=	$(foreach dir,$(SOURCES),$(CURDIR)/$(dir))
+ 
+CFILES		:=	$(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
+CPPFILES	:=	$(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
+SFILES		:=	$(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
+BINFILES	:=	$(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
+ 
+export OFILES	:=	$(addsuffix .o,$(BINFILES)) \
+			$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o)
+ 
+export INCLUDE	:=	$(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
+			$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
+			-I$(CURDIR)/$(BUILD)
+ 
+export LIBPATHS	:=	$(foreach dir,$(LIBDIRS),-L$(dir)/lib)
+
+#---------------------------------------------------------------------------------
+# use CXX for linking C++ projects, CC for standard C
+#---------------------------------------------------------------------------------
+ifeq ($(strip $(CPPFILES)),)
+#---------------------------------------------------------------------------------
+	export LD	:=	$(CC)
+#---------------------------------------------------------------------------------
+else
+#---------------------------------------------------------------------------------
+	export LD	:=	$(CXX)
+#---------------------------------------------------------------------------------
+endif
+#---------------------------------------------------------------------------------
+
+.PHONY: $(BUILD) clean
+ 
+#---------------------------------------------------------------------------------
+$(BUILD):
+	@[ -d $@ ] || mkdir -p $@
+	@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
+ 
+#---------------------------------------------------------------------------------
+clean:
+	@echo clean ...
+	@rm -fr $(BUILD) *.elf
+ 
+ 
+#---------------------------------------------------------------------------------
+else
+ 
+DEPENDS	:=	$(OFILES:.o=.d)
+ 
+#---------------------------------------------------------------------------------
+# main targets
+#---------------------------------------------------------------------------------
+$(ARM7BIN)	:	$(ARM7ELF)
+	@$(OBJCOPY) -O binary $< $@
+	@echo built ... $(notdir $@)
+
+
+$(ARM7ELF)	:	$(OFILES)
+	@echo linking $(notdir $@)
+	@$(LD)  $(LDFLAGS) $(OFILES) $(LIBPATHS) $(LIBS) -o $@
+
+
+#---------------------------------------------------------------------------------
+# you need a rule like this for each extension you use as binary data 
+#---------------------------------------------------------------------------------
+%.bin.o	:	%.bin
+#---------------------------------------------------------------------------------
+	@echo $(notdir $<)
+	@$(bin2o)
+
+-include $(DEPENDS)
+ 
+#---------------------------------------------------------------------------------------
+endif
+#--------------------------------------------------------------------------------------- 
\ No newline at end of file

diff --git a/arm7/source/support.c b/arm7/source/support.c
line changes: +95/-0
index 0000000..3f0e502
--- /dev/null
+++ b/arm7/source/support.c
@@ -0,0 +1,95 @@
+/*---------------------------------------------------------------------------------
+
+	default ARM7 core
+
+	Copyright (C) 2005
+		Michael Noland (joat)
+		Jason Rogers (dovoto)
+		Dave Murphy (WinterMute)
+
+	This software is provided 'as-is', without any express or implied
+	warranty.  In no event will the authors be held liable for any
+	damages arising from the use of this software.
+
+	Permission is granted to anyone to use this software for any
+	purpose, including commercial applications, and to alter it and
+	redistribute it freely, subject to the following restrictions:
+
+	1.	The origin of this software must not be misrepresented; you
+		must not claim that you wrote the original software. If you use
+		this software in a product, an acknowledgment in the product
+		documentation would be appreciated but is not required.
+	2.	Altered source versions must be plainly marked as such, and
+		must not be misrepresented as being the original software.
+	3.	This notice may not be removed or altered from any source
+		distribution.
+
+---------------------------------------------------------------------------------*/
+
+#include <nds.h>
+
+touchPosition first,tempPos;
+
+//---------------------------------------------------------------------------------
+void VcountHandler() {
+//---------------------------------------------------------------------------------
+	static int lastbut = -1;
+	
+	uint16 but=0, x=0, y=0, xpx=0, ypx=0, z1=0, z2=0;
+
+	but = REG_KEYXY;
+
+	if (!( (but ^ lastbut) & (1<<6))) {
+ 
+		tempPos = touchReadXY();
+
+		if ( tempPos.x == 0 || tempPos.y == 0 ) {
+			but |= (1 <<6);
+			lastbut = but;
+		} else {
+			x = tempPos.x;
+			y = tempPos.y;
+			xpx = tempPos.px;
+			ypx = tempPos.py;
+			z1 = tempPos.z1;
+			z2 = tempPos.z2;
+		}
+		
+	} else {
+		lastbut = but;
+		but |= (1 <<6);
+	}
+
+	IPC->touchX			= x;
+	IPC->touchY			= y;
+	IPC->touchXpx		= xpx;
+	IPC->touchYpx		= ypx;
+	IPC->touchZ1		= z1;
+	IPC->touchZ2		= z2;
+	IPC->buttons		= but;
+
+}
+
+//---------------------------------------------------------------------------------
+int main(int argc, char ** argv) {
+//---------------------------------------------------------------------------------
+
+	// read User Settings from firmware
+	readUserSettings();
+
+	// Turn off the top backlight, we won't need it
+	writePowerManagement(PM_CONTROL_REG, readPowerManagement(PM_CONTROL_REG) & ~PM_BACKLIGHT_TOP);
+
+	irqInit();
+
+	// Start the RTC tracking IRQ
+	initClockIRQ();
+
+	SetYtrigger(80);
+	irqSet(IRQ_VCOUNT, VcountHandler);
+
+	irqEnable(IRQ_VCOUNT);
+
+	// Keep the ARM7 mostly idle
+	while (1) swiWaitForVBlank();
+}

diff --git a/arm9/Makefile b/arm9/Makefile
line changes: +134/-0
index 0000000..4ca763d
--- /dev/null
+++ b/arm9/Makefile
@@ -0,0 +1,134 @@
+#---------------------------------------------------------------------------------
+.SUFFIXES:
+#---------------------------------------------------------------------------------
+ifeq ($(strip $(DEVKITARM)),)
+$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
+endif
+
+include $(DEVKITARM)/ds_rules
+
+#---------------------------------------------------------------------------------
+# BUILD is the directory where object files & intermediate files will be placed
+# SOURCES is a list of directories containing source code
+# INCLUDES is a list of directories containing extra header files
+# DATA is a list of directories containing binary files
+# all directories are relative to this makefile
+#---------------------------------------------------------------------------------
+BUILD		:=	build
+SOURCES		:=	source  
+INCLUDES	:=	include
+DATA		:=
+
+#---------------------------------------------------------------------------------
+# options for code generation
+#---------------------------------------------------------------------------------
+ARCH	:=	-mthumb -mthumb-interwork
+
+CFLAGS	:=	-g -Wall -O2\
+ 			-march=armv5te -mtune=arm946e-s -fomit-frame-pointer\
+			-ffast-math \
+			$(ARCH)
+
+CFLAGS	+=	$(INCLUDE) -DARM9
+CXXFLAGS	:=	$(CFLAGS) -fno-rtti -fno-exceptions
+
+ASFLAGS	:=	-g $(ARCH) -march=armv5te -mtune=arm946e-s
+
+LDFLAGS	=	-specs=ds_arm9.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map)
+
+#---------------------------------------------------------------------------------
+# any extra libraries we wish to link with the project
+#---------------------------------------------------------------------------------
+LIBS	:= -lnds9 -lm
+ 
+#---------------------------------------------------------------------------------
+# list of directories containing libraries, this must be the top level containing
+# include and lib
+#---------------------------------------------------------------------------------
+LIBDIRS	:=	$(LIBNDS)
+ 
+#---------------------------------------------------------------------------------
+# no real need to edit anything past this point unless you need to add additional
+# rules for different file extensions
+#---------------------------------------------------------------------------------
+ifneq ($(BUILD),$(notdir $(CURDIR)))
+#---------------------------------------------------------------------------------
+ 
+export ARM9BIN	:=	$(TOPDIR)/$(TARGET).arm9
+export ARM9ELF	:=	$(CURDIR)/$(TARGET).arm9.elf
+export DEPSDIR := $(CURDIR)/$(BUILD)
+
+export VPATH	:=	$(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
+					$(foreach dir,$(DATA),$(CURDIR)/$(dir))
+ 
+CFILES		:=	$(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
+CPPFILES	:=	$(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
+SFILES		:=	$(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
+BINFILES	:=	$(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
+ 
+#---------------------------------------------------------------------------------
+# use CXX for linking C++ projects, CC for standard C
+#---------------------------------------------------------------------------------
+ifeq ($(strip $(CPPFILES)),)
+#---------------------------------------------------------------------------------
+	export LD	:=	$(CC)
+#---------------------------------------------------------------------------------
+else
+#---------------------------------------------------------------------------------
+	export LD	:=	$(CXX)
+#---------------------------------------------------------------------------------
+endif
+#---------------------------------------------------------------------------------
+
+export OFILES	:=	$(addsuffix .o,$(BINFILES)) \
+					$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o)
+ 
+export INCLUDE	:=	$(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
+			$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
+			-I$(CURDIR)/$(BUILD)
+ 
+export LIBPATHS	:=	$(foreach dir,$(LIBDIRS),-L$(dir)/lib)
+ 
+.PHONY: $(BUILD) clean
+ 
+#---------------------------------------------------------------------------------
+$(BUILD):
+	@[ -d $@ ] || mkdir -p $@
+	@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
+ 
+#---------------------------------------------------------------------------------
+clean:
+	@echo clean ...
+	@rm -fr $(BUILD) *.elf *.nds* *.bin 
+ 
+ 
+#---------------------------------------------------------------------------------
+else
+ 
+DEPENDS	:=	$(OFILES:.o=.d)
+ 
+#---------------------------------------------------------------------------------
+# main targets
+#---------------------------------------------------------------------------------
+$(ARM9BIN)	:	$(ARM9ELF)
+	@$(OBJCOPY) -O binary $< $@
+	@echo built ... $(notdir $@)
+
+$(ARM9ELF)	:	$(OFILES)
+	@echo linking $(notdir $@)
+	@$(LD)  $(LDFLAGS) $(OFILES) $(LIBPATHS) $(LIBS) -o $@
+
+#---------------------------------------------------------------------------------
+# you need a rule like this for each extension you use as binary data 
+#---------------------------------------------------------------------------------
+%.bin.o	:	%.bin
+#---------------------------------------------------------------------------------
+	@echo $(notdir $<)
+	@$(bin2o)
+
+
+-include $(DEPENDS)
+ 
+#---------------------------------------------------------------------------------------
+endif
+#---------------------------------------------------------------------------------------

diff --git a/arm9/source/engine.h b/arm9/source/engine.h
line changes: +28/-0
index 0000000..f31e603
--- /dev/null
+++ b/arm9/source/engine.h
@@ -0,0 +1,28 @@
+#ifndef _PIXEL_H
+#define _PIXEL_H
+
+#include <nds.h>
+
+#define bgcolor RGB15(16,16,16)
+#define fgcolor RGB15(0,0,0)
+
+#define NPIXELS 1000
+#define FRACBITS 5
+#define VELOCITY_THRESHOLD 64 << FRACBITS
+
+typedef struct {
+	s16 x;
+	s16 y;
+	s16 vx;
+	s16 vy;
+} pixel;
+
+DTCM_DATA extern pixel pixels[NPIXELS];
+
+void engine(void);
+void pixel_init(pixel *);
+void pixel_accel(pixel *, s16, s16);
+void pixel_update(pixel *);
+void pixel_draw(pixel *);
+
+#endif //PIXEL_H

diff --git a/arm9/source/engine.itcm.c b/arm9/source/engine.itcm.c
line changes: +125/-0
index 0000000..55fa381
--- /dev/null
+++ b/arm9/source/engine.itcm.c
@@ -0,0 +1,125 @@
+#include <nds.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "engine.h"
+
+DTCM_DATA pixel pixels[NPIXELS];
+
+void pixel_init(pixel *p) {
+	p->x = rand() % (SCREEN_WIDTH << FRACBITS);
+	p->y = rand() % (SCREEN_WIDTH << FRACBITS);
+	p->vx = (rand() % 10 - 5) << FRACBITS;
+	p->vy = (rand() % 10 - 5) << FRACBITS;
+}
+
+void pixel_accel(pixel *p, s16 x, s16 y) {
+	p->vx += x;
+	if (p->vx > VELOCITY_THRESHOLD)
+		p->vx = VELOCITY_THRESHOLD;
+	else if (p->vx < -VELOCITY_THRESHOLD)
+		p->vx = -VELOCITY_THRESHOLD;
+
+	p->vy += y;
+	if (p->vy > VELOCITY_THRESHOLD)
+		p->vy = VELOCITY_THRESHOLD;
+	else if (p->vy < -VELOCITY_THRESHOLD)
+		p->vy = -VELOCITY_THRESHOLD;
+}
+
+void pixel_update(pixel *p) {
+	p->x += p->vx;
+	p->y += p->vy;
+}
+
+void pixel_draw(pixel *p) {
+	if (p->x < 0 || p->x > SCREEN_WIDTH << FRACBITS ||
+	    p->y < 0 || p->y > SCREEN_HEIGHT << FRACBITS)
+		return;
+
+	glVertex3v16((p->x - p->vx) >> FRACBITS, (p->y - p->vy) >> FRACBITS, 0);
+	glVertex3v16(p->x >> FRACBITS, p->y >> FRACBITS, 0);
+	glVertex3v16(p->x >> FRACBITS, p->y >> FRACBITS, 0);
+}
+
+DTCM_DATA u16 mx = 128;
+DTCM_DATA u16 my = 96;
+
+void engine() {
+	touchPosition touch;
+	int i;
+
+	while(1) {
+		// Input handling
+		scanKeys();
+		if (keysHeld() & KEY_TOUCH) {
+			touch = touchReadXY();
+			mx = touch.px;
+			my = touch.py;
+			if (keysDown() & KEY_TOUCH) {	// just pressed
+				for (i = 0; i < NPIXELS; i++) {
+					s32 dx = pixels[i].x - (mx << FRACBITS);
+					s32 dy = pixels[i].y - (my << FRACBITS);
+					u16 mag = swiSqrt(dx*dx + dy*dy);
+					// Shift for the following division,
+					// and keep the sign!
+					dx = (dx & BIT(31)) | ((dx << FRACBITS) & ~BIT(31));
+					dy = (dy & BIT(31)) | ((dy << FRACBITS) & ~BIT(31));
+					dx = (dx / mag) * 10;
+					dy = (dy / mag) * 10;
+
+					pixel_accel(&pixels[i], dx, dy);
+				}
+			}
+		}
+
+		for (i = 0; i < NPIXELS; i++) {
+			// Get distance
+			s16 dx = (mx << FRACBITS) - pixels[i].x;
+			s16 dy = (my << FRACBITS) - pixels[i].y;
+			// This works because the multiplication shifts
+			// the decimal place outwards, then the sqrt shifts it
+			// back inwards. It's bizarre, but it all works out
+			// somehow.
+			u16 d = swiSqrt((u32)dx*(u32)dx + (u32)dy*(u32)dy);
+
+			// Apply acceleration to pixels towards the cursor
+			s16 ax = dx / 50;
+			s16 ay = dy / 50;
+
+			// Apply a drag proportional to the distance from the
+			// cursor
+			if (d > 25 << FRACBITS) {
+				ax += -pixels[i].vx * (d - (25 << FRACBITS)) / 5000;
+				ay += -pixels[i].vy * (d - (25 << FRACBITS)) / 5000;
+			}
+
+			// And a "chaotic" acceleration inversely proportional
+			// to the distance from the cursor
+			ax += (rand() % (20 << (FRACBITS*2)) - (10 << (FRACBITS*2))) / d;
+			ay += (rand() % (20 << (FRACBITS*2)) - (10 << (FRACBITS*2))) / d;
+
+			pixel_accel(&pixels[i], ax, ay);
+			pixel_update(&pixels[i]);
+		}
+
+		glBegin(GL_TRIANGLES);
+		for (i = 0; i < NPIXELS; i++) {
+			pixel_draw(&pixels[i]);
+		}
+		//glEnd();
+
+		glBegin(GL_QUADS);
+		// Draw rect around the cursor
+		glVertex3v16(mx - 5, my - 5, 0);
+		glVertex3v16(mx + 5, my - 5, 0);
+		glVertex3v16(mx + 5, my + 5, 0);
+		glVertex3v16(mx - 5, my + 5, 0);
+		//glEnd();
+
+		swiWaitForVBlank();
+
+		glFlush(0);
+	}
+
+}

diff --git a/arm9/source/swarm.c b/arm9/source/swarm.c
line changes: +49/-0
index 0000000..ea2c832
--- /dev/null
+++ b/arm9/source/swarm.c
@@ -0,0 +1,49 @@
+/* swarmDS
+ * Updated to use (probably buggy) fixed-point math
+ */
+
+#include <nds.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "engine.h"
+
+void engine(void);
+
+int main(void) {
+	int i;
+
+	powerON(POWER_ALL);
+
+	lcdMainOnBottom();
+	videoSetMode(MODE_0_3D);
+
+	irqInit();
+	irqEnable(IRQ_VBLANK);
+
+	glInit();
+	glEnable(GL_ANTIALIAS);
+	glClearColor(16, 16, 16, 31);
+	glClearPolyID(63);
+	glClearDepth(0x7FFF);
+
+	glViewport(0, 0, 255, 191);
+
+	glMatrixMode(GL_PROJECTION);
+	glLoadIdentity();
+	glOrthof32(0, 255, 191, 0, 0, 1);
+
+	// wireframe mode
+	glPolyFmt(POLY_ALPHA(0) | POLY_CULL_NONE);
+
+	// Init those pixels
+	for (i = 0; i < NPIXELS; i++)
+		pixel_init(&pixels[i]);
+
+	glMatrixMode(GL_MODELVIEW);
+	glColor3b(0, 0, 0);
+
+	engine();
+
+	return 0;
+}