![]() |
| Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact |
| ||||||
This is a discussion on [RELEASE]Gaydar v1.5 within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; Hey, I had registered with this site in January of 2007, but only made one post. Anyways, I'm back now. ...
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
|
Hey, I had registered with this site in January of 2007, but only made one post. Anyways, I'm back now.
I've been playing around with coding on the PSP and finally got some stuff to work, so I decided to make my first real piece of homebrew, called Gaydar (gay plus radar). It runs on 1.50, 1.00, and custom firmwares. It's a joke that tells you to point the infrared port at a person, press O, and a light will start blinking telling you whether they're gay or straight (it's about a 50/50 chance either way, regardless of what the infrared port is picking up )I've included the C++ source code if anybody would like to use part of it. Even if you don't really think you would want it, download it anyways- it's funny to see if someone will show up as gay or straight. I would love to hear your thoughts and suggestions. Screenshot- ![]() Here it is (updated version with random gay value and other button presses)- http://www.sendspace.com/file/1npmis MD5- 621dcc833c59e50ff3ad721f6 99c8a10 In this new version, you can press [] to go to gay and triangle to go to straight. Also, after either light starts blinking, you can press X to start it again. You might need to hold it for a second though. It will generate a new gay value when you restart it like that. Last edited by locofocos; 11-07-2008 at 10:09 PM.. |
|
|
|
|
|
|
#5 |
![]() ![]() |
OMG, my mouse is gay also, as well as my rubiks cube and computer monitor, although my computer itself is a metro sexual transvestite
__________________
My Projects [URL="http://www.megaupload.com/?d=Q860B1VV"]BUMPER HARVEST MOD - PEGGLE DELUXE BETA 1[/URL] working on Zuno, an uno like game [QUOTE=FreePlay]It's a picture of a monkey. There, I spoiled it for you.[/QUOTE] |
|
|
|
|
|
#6 |
|
Haha, is it not picking up straight any more? *proceeds to put downloaded version on psp and test*
EDIT: Wow, I see. I thought I had made a good way to generate a random number of either 1 or 0, but I guess not. Any ideas (on how to generate either a 1 or 0 in C++)? |
|
|
|
|
|
|
#12 |
![]() ![]() ![]() Developer
|
you should not break the while loop if the buttons are pressed.
You just need to run the functions startstraight or startgay. Use rand() or the mersenne twister algorithm to generate random numbers (I prefer the mersenne twister). If 0 then runs startstraight otherwise startgay
|
|
|
|
|
|
#13 |
![]() Enter Custom Title
Join Date: Sep 2006
Real First Name: Davee
Location: Perth, Scotland
Posts: 1,041
Trader Feedback: 0
|
My random number code
Code:
void InitRandom(SceKernelUtilsMt19937Context *ctx)
{
u32 tick = sceKernelGetSystemTimeLow();
sceKernelUtilsMt19937Init(ctx, tick);
}
int GetRandom(int min, int max, SceKernelUtilsMt19937Context *ctx)
{
return (sceKernelUtilsMt19937UInt(ctx) % (max - min + 1)) + min;
}
__________________
VSH Scramble Patcher || VSH Module Descrambler || Unlimted Character Version Changer (5.00) |
|
|
|
|
|
#15 |
![]() ![]() Developer
|
Dude!
http://www.palmblvd.com/software/pc/...7-palm-pc.html I was going to make a port of Gaydar! You beat me to it!!! Good thing I ported over FanMate before anyone else did...
__________________
Want to see all my programs in one spot? http://crait.ueuo.com/ Want to join an awesome forum where you can get help with said programs? http://www.sands.co.nr/ You can also check out my forum section at http://www.brewology.com/ Or you can PM me. :D |
|
|
|
|
|
#16 |
![]() ![]() ![]() Developer
|
@author, if you don't know what is the mersenne twister, davee has just posted it 3 posts above this one
|
|
|
|
|
|
#19 |
|
This is great. We need more developers like you. Not necessarily the gay part,
, but the mere fact that you would create such a one of a kind program. Ha, finally a something that uses the IR port that I would actually use. It just makes me wonder what could be next for you.No pressure.
|
|
|
|
|
|
|
#21 | |
![]() ![]() Bush Programmer
|
Quote:
or time how long the user holds the button. or just use the random function. |
|
|
|
|
|
|
#24 |
|
Wow! 22 downloads! I wasn't expecting a whole lot, but still...
Alright, I've changed it so it actually generates a random number to determine if they're gay or not. I decided to go with the rand() thing for simplicity (and documentation that I found). I would go ahead and release it right now, but I think I'll add the option to press triangle for straight and square for gay (but it won't tell you that except in the readme). It should be out in the next 24 hours. Also, yes, this is my first project. I realize that the code isn't very optimized in MANY places, but I'm happy that it actually works. Thanks for all the support guys, I really feel welcomed here. A last note- I think I actually did get the idea from that palm application. My brother had mentioned it a long time ago, and I thought it would be a good idea to start with something simple. |
|
|
|
|
|
|
#26 |
![]() |
cart was going to make this.
anyways could it have seen this coming. what is flash? because that was the gayest thread ever,,,,,,,,....::::..::> .
__________________
[QUOTE=SuperBatXS]I use my psp all the time in the plane. I was masturbating once while watching some lesbian videos when a fat lady beside me was sleeping and her really hot daughter next to her was getting ready for my dong to shove up her ding. Then, her daughter and I were about to go to the bathroom together but, the air hostess came to tell me i should stop right now. [U]I swear this happened.[/U] I am never taking my psp to the plane again. Always got my iPod though...hehe. ;)[/QUOTE] |
|
|
|
|
|
#27 |
|
Alright, I did it. The main update is that it's actually random as to whether it puts out gay or straight. Also, I added buttons to specifiy the output. Pressing square instead of circle will make it display gay. Likewise, triangle will go to straight. Once either light starts blinking, you can start over again by pressing X (you might need to hold it for a second). It will regenerate the gay value.
Here it is- http://www.sendspace.com/file/1npmis MD5- 621dcc833c59e50ff3ad721f6 99c8a10 |
|
|
|
|
|
|
#28 | |
![]() ![]() Developer
|
Quote:
__________________
Want to see all my programs in one spot? http://crait.ueuo.com/ Want to join an awesome forum where you can get help with said programs? http://www.sands.co.nr/ You can also check out my forum section at http://www.brewology.com/ Or you can PM me. :D |
|
|
|
|
![]() |
| Tags |
| releasegaydar , v15 |
| Thread Tools | |
|
|