Difference between revisions of "User:Elisherer"
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
{{Userbox balance board|1}} | {{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 = [[File:Forwarder-src.zip|Forwarder-src.zip]] | ||
+ | | peripherals = | ||
+ | }} | ||
== Eli sherer == | == Eli sherer == | ||
Line 37: | Line 48: | ||
{ 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_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 60: | Line 73: | ||
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) |
Revision as of 16:30, 14 June 2009
| ||||||||||
Wii
| ||||||||||
| ||||||||||
Development
| ||||||||||
| ||||||||||
Peripherals
| ||||||||||
Fast Forwarder | |
General | |
---|---|
Author(s) | Elisherer |
Type | Utility |
Version | 0.3 (LoadMii) |
Links | |
[[File:Forwarder-src.zip|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)