In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "User:Elisherer"

From WiiBrew
Jump to navigation Jump to search
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{Userboxtop}}
 
{{Userboxtop}}
{{Userbox developer}}
+
[[Image:Elisherer.jpg|center]]
 +
{{Userbox lang|he}}
 +
{{userboxbreak|toptext=Wii}}
 
{{Userbox bootmii}}
 
{{Userbox bootmii}}
 
{{Userbox system menu|4.0}}
 
{{Userbox system menu|4.0}}
Line 6: Line 8:
 
{{Userbox DVDx}}
 
{{Userbox DVDx}}
 
{{Userbox homebrew browser}}
 
{{Userbox homebrew browser}}
{{Userbox lang|he}}
+
{{Userbox mplayer ce}}
{{Userbox code|C++}}
+
{{userboxbreak|toptext=Development}}
 +
{{Userbox developer}}
 +
{{Userbox dev|Win}}
 +
{{Userbox code|C}}
 +
{{Userbox beta}}
 +
{{userboxbreak|toptext=Peripherals}}
 
{{Userbox wiimote|3}}
 
{{Userbox wiimote|3}}
 
{{Userbox nunchuk|2}}
 
{{Userbox nunchuk|2}}
 
{{Userbox classic controller|2}}
 
{{Userbox classic controller|2}}
 +
{{Userbox gamecube controller|0}}
 +
{{Userbox motionplus|2}}
 +
{{Userbox balance board|1}}
 
{{Userboxbottom}}
 
{{Userboxbottom}}
 +
 +
{{Infobox homebrew
 +
| image      =
 +
| title      = Fast Forwarder
 +
| desc        = A fast forwarder for dol/elf files
 +
| type        = utility
 +
| author      = Elisherer
 +
| version    = 0.3 (LoadMii)
 +
| download    = Media:Forwarder-src.zip
 +
| peripherals =
 +
}}
  
 
== Eli sherer ==
 
== Eli sherer ==
Line 23: Line 44:
 
* [[User:Elisherer/THPoker|Texas Hold'em Poker]]
 
* [[User:Elisherer/THPoker|Texas Hold'em Poker]]
  
* [[File:Miistudio.zip MiiStudio]] an extension for libmii to generate images of a mii.
+
* [[http://www.wiibrew.org/wiki/File:Miistudio.zip MiiStudio]] an extension for libmii to generate images of a mii.
  
 
== GRRLib Homemade Windows-like Cursor ==
 
== GRRLib Homemade Windows-like Cursor ==
Line 31: Line 52:
 
{ double sina=sin(DegToRad(a)),cosa=cos(DegToRad(a));
 
{ double sina=sin(DegToRad(a)),cosa=cos(DegToRad(a));
 
Vector vcursor[8]={{0,0},{0,34},{8,26},{16,42},{21,39},{13,23},{23,23},{0,0}};
 
Vector vcursor[8]={{0,0},{0,34},{8,26},{16,42},{21,39},{13,23},{23,23},{0,0}};
u32 fcolor[8]= {GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE},
+
u32 fcolor[8]= {GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,
lcolor[8]= {GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK};
+
GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE},
 +
lcolor[8]= GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,
 +
GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK};
 
//rotation:
 
//rotation:
 
//x'=xcosa-ysina
 
//x'=xcosa-ysina
Line 54: Line 77:
 
GRRLIB_Render();
 
GRRLIB_Render();
 
</source>
 
</source>
 +
 +
==Fast Forwarder==
 +
 +
To use this program you first need to install the libfat from the lib file to your libogc directory and than change the 'PATH_DOL' and 'PATH_ELF' definition in main.c and compile. good luck! (Tell me what you think in the discussion)

Latest revision as of 22:06, 20 April 2010

Elisherer.jpg
he This user is a native speaker of Hebrew.
Wii
BootMii This user has installed BootMii on their Wii.
Wii This user is running System Menu 4.0 on their Wii.
Userbox homebrew channel.png This user has installed the Homebrew Channel version 1.0.3 on their Wii.


DVDX This user has installed DVDX on their Wii.
Homebrew Browser This user uses the Homebrew Browser to download and update their homebrew.
MPlayer CE This user uses MPlayer CE to play media on their Wii.
Development
Developer icon.png
This user has developed homebrew for the Wii.


Windows Flag.png This user develops using Windows.
C This user codes in C.
Userbox beta.png
This user beta tests homebrew.
Peripherals
3 Wii Remotes This user owns 3 Wii Remotes.
Nunchuck alternative.svg This user owns 2 Nunchuks.
ClassicController.svg This user owns 2 Classic Controllers.
GameCube Controller This user owns 0 GameCube Controllers.
Wii MotionPlus This user owns 2 Wii MotionPlus units.
Wii Balance Board This user owns 1 Wii Balance Board.
Fast Forwarder
General
Author(s)Elisherer
TypeUtility
Version0.3 (LoadMii)
Links
Download

Eli sherer

the maker of

I'm working on:

  • [MiiStudio] an extension for libmii to generate images of a mii.

GRRLib Homemade Windows-like Cursor

For Entering my profile, you get a present...

void draw_cursor(int x,int y,int a)
{	double sina=sin(DegToRad(a)),cosa=cos(DegToRad(a));
	Vector	vcursor[8]={{0,0},{0,34},{8,26},{16,42},{21,39},{13,23},{23,23},{0,0}};
	u32 fcolor[8]= {GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE,
			GRRLIB_WHITE,GRRLIB_WHITE,GRRLIB_WHITE},
		lcolor[8]= GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK,
			GRRLIB_BLACK,GRRLIB_BLACK,GRRLIB_BLACK};
	//rotation:
	//x'=xcosa-ysina
	//y'=xsina+ycosa
	int i,oldx,oldy;
	for(i=0;i<8;i++)
	{	oldx=vcursor[i].x;oldy=vcursor[i].y;
		vcursor[i].x=oldx*cosa-oldy*sina+x;
		vcursor[i].y=oldx*sina+oldy*cosa+y;
	}
	//draw left leg
	GRRLIB_NGoneFilled(vcursor, fcolor,8);
	GRRLIB_NGone(vcursor, lcolor,8);
}

Call it like this:

	draw_cursor(ir1.sx-200,ir1.sy-250,ir1.angle);
	GRRLIB_Render();

Fast Forwarder

To use this program you first need to install the libfat from the lib file to your libogc directory and than change the 'PATH_DOL' and 'PATH_ELF' definition in main.c and compile. good luck! (Tell me what you think in the discussion)