You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'Pinoyguy75'

We found 332 matches.


<< < > >>

Viewing 1-30 of 332 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 1012

1.

None

Topic: Java script help?

Posted: 06/28/09 10:46 PM

Forum: Programming

so what's the problem exactly? is the example your code or someone else's and is the code given your's or an example you're using, but isn't workin for you?


2.

Happy

Topic: basic c++ question

Posted: 06/28/09 10:20 PM

Forum: Programming

So I know '/t' is to add a tab after a word, but I forgot how to adjust that value (8 i think) to make it bigger or smaller. Can anyone remind me how this is done?


3.

None

Topic: Line rotation around axis in Java

Posted: 06/18/09 10:32 PM

Forum: Programming

At 6/18/09 10:14 PM, littleMonsterGames wrote: just adjust the x+y coordinates as you've suggested. Maybe you could make a rotateLine(int degrees) function.

Use trigonometry.

Okay, i was just hopin there would be an easier way LoL


4.

None

Topic: What would I have to become...

Posted: 06/18/09 09:40 PM

Forum: Programming

At 6/18/09 09:26 PM, littleMonsterGames wrote: Going from c++ to as3 should be pretty easy, although on second thought java to as3 should be easier, because of how much they both use event listeners.

Programming 1 is the same in either language, but since Java uses event listeners (buttons, mouse click/ over, etc.) I would agree with littleMonsterGames. Programming 1 is basic and the foundation of all programming, so find a good site or book to learn up on that, then move on to Graphic User Interfaces and event listeners and you should have enough to accomplish your goal.


5.

None

Topic: Line rotation around axis in Java

Posted: 06/18/09 08:55 PM

Forum: Programming

What is the easiest way to rotate a line around a fixed axis in Java code. The only way I can think is to adjust the x & y coordinates of the end of the line. That is kinda hard and requires some calculations. I don't know if there is a class for it, but the only one I found was for 2D graphics and I just need one to work for a basic line (with a fixed length) around a fixed point. Any help would be appreciated.


6.

Winking

Topic: Programming Books? [:

Posted: 06/17/09 07:48 PM

Forum: Programming

If you really want to learn a programming language, then I suggest java. It's the same as c++, but in a different format. People do complain about the big library java has built in, but a lot of it comes in very handy when developing Graphical User Interfaces and a lot of methods (or functions) built in various classes, so you don't have to write code for a bunch of the little things (all of which is provided on the java website called "java docs" with easy navigation to help you find a class of a method you need). After learning Java transitioning to c++ will be fairly easy, it will just be a matter of getting use to a different format (syntax). The book I'm using works really well.

Introduction to Java Programming, Seventh Edition, Y. Daniel Liang

The first 10 chapters deal with Object Oriented Design, which is the same place you'll start at with c++ and from there the beginning of the book has a chart that maps out which chapters after the first 10 that you need for each individual chapters. It's fairly straight forward and and some chapters the map skips, so you don't have to go through the whole book. The book provides a website that contains answers to review questions and half of the programming exercises. It also has self-tests, so you'll have plenty of to truly test your knowledge. Plus there are plenty of java forums and to help you out. Whatever you choose, I wish you luck and this piece of advise...

Take this seriously or make sure this is something you really want to do, because like math or music you can't just learn the material, you have to practice and practice and when you do become proficient it's still trial and error when developing code/programs.
So good luck and I wish you a safe journey!


7.

None

Topic: testers for a login??

Posted: 06/16/09 07:04 PM

Forum: Programming

when you get the ban, it's unclear that the login is blocked


8.

None

Topic: Animating a Grphic image in Java

Posted: 06/16/09 05:31 PM

Forum: Programming

So I'm learning up on basic GUI and I wanted to make a basic game with a drawn character that moves left and right and shoots at random targets. I've been thinking about it and can't really figure it out and the chapter in the book i'm reading doesn't really help with this situation. In my code I created a class for the person and used paintcomponent to draw the character. I then created a class for the controls in which I added a keylistener and a keyadapter for the motion controls. I'm not sure if that was right, but I couldn't access the variable outside the class in order to repaint the person. I'm not sure if I was on the right track or not, but I need some help with this.

here's some of my code (controls and person)

class Controls extends JPanel{
public Controls(){
add(new Person());
addKeyListener(new KeyAdapter(){
public void keyPressed(KeyEvent e){
switch(e.getKeyCode()){
case KeyEvent.VK_RIGHT : xHeadCenter += 10; break;
case KeyEvent.VK_LEFT : xHeadCenter -= 10; break;
case KeyEvent.VK_UP : right -= 2; yarms2 -= 2; break;
case KeyEvent.VK_DOWN : right += 2; yarms2 += 2; break;
}
repaint();
}
});
}
}

class Person extends JPanel{
int xHeadCenter = getWidth()/5;
protected void paintComponent(Graphics g){
super.paintComponent(g);
/*Head Construction
* Rest of the body is centered around these two values
*/

int yHeadCenter = (int)(getHeight()*.6);
int radius = (int)(Math.min(getWidth(), getHeight()) * 0.05);
int x = xHeadCenter - radius;
int y = yHeadCenter - radius;
//fill in head
g.fillArc(x, y, 2*radius, 2*radius, 0, 30);
g.fillArc(x, y, 2*radius, 2*radius, 30, 30);
g.fillArc(x, y, 2*radius, 2*radius, 60, 30);
g.fillArc(x, y, 2*radius, 2*radius, 90, 30);
g.fillArc(x, y, 2*radius, 2*radius, 120, 30);
g.fillArc(x, y, 2*radius, 2*radius, 150, 30);
g.fillArc(x, y, 2*radius, 2*radius, 180, 30);
g.fillArc(x, y, 2*radius, 2*radius, 210, 30);
g.fillArc(x, y, 2*radius, 2*radius, 240, 30);
g.fillArc(x, y, 2*radius, 2*radius, 270, 30);
g.fillArc(x, y, 2*radius, 2*radius, 300, 30);
g.fillArc(x, y, 2*radius, 2*radius, 330, 30);
//body
int xbod1 = xHeadCenter;
int xbod2 = xbod1;
int ybod1 = yHeadCenter + radius;
int ybod2 = ybod1 + radius*3;
//draw body
g.drawLine(xbod1, ybod1, xbod2, ybod2);
//arms
int left = x/2 - radius/2;
int right = (int)((xHeadCenter+radius)*1.5);
int yarms = ybod1 + (int)(radius * 0.3);
int yarms2 = ybod1 + (int)(radius * 0.3);
//draw left arm
g.drawLine(left, yarms, xbod1, yarms);
//draw right arm
g.drawLine(xbod1, yarms, right, yarms2);
//legs
int leftleg = x;
int lefty = (int)(ybod2 * 1.25);
int rightleg = xHeadCenter + radius;
int righty = (int)(ybod2 * 1.25);
//left leg
g.drawLine(xbod2, ybod2, leftleg, lefty);
//right leg
g.drawLine(xbod2, ybod2, rightleg, righty);

}
}
}


9.

None

Topic: Wi/Ht? level up! Lounge

Posted: 06/03/09 01:25 PM

Forum: Where is / How to?

SGT First Class!


10.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 07:41 PM

Forum: Video Games

At 6/2/09 07:31 PM, SlipperyMooseCakes wrote: Anyway, what games did you guys see that are day one buys. Not games you're going to wait until Christmas to get but games that you're going to get on the day of launch.

E3 is a conference about what these electronic entertainment companies are working on for the following year, not "lets all get together today and release games that we haven't told anyone about yet". But... there was a couple of DS games that they said would be out this week. The rest of the games you will most likely have to wait to the holidays or next year. There are some being released before the holidays, but you can look that up online at gamestop.com and these various companies websites.

*sorry about the dp btw


11.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 07:37 PM

Forum: Video Games

At 6/2/09 07:12 PM, LordJaric wrote: This whole king of king kong thing is kind of pathetic, I mean a grown man having that much devotion to a game.

Well at least he's well rounded(e.g. musical & sports talent, has a job) and has a family who he cares about and vice versa. (from what i've seen in e3 promos and movie)


12.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 06:13 PM

Forum: Video Games

As far as presentations go, I believe Microsoft won because they informed enough on there games, while not boring us and also demonstrating how the gameplay works and showed trailers. Nintendo and EA Talked way too much and Ubisoft was good. Sony did a good job as well, but I believe Microsoft did better. As far as the actual E3 Conference, Sony did the best job addressing both the audience and their stock holders while Nintendo only addressed their stock holders and threw in some notes and trailers for the audience, and Microsoft didn't so too well addressing their stock holders. (I realize it was just a press conference, but I ranked for both.) As far as games/hardware, Microsoft took it addressing the advantages of its competitors by copying it and stepping it up a notch with 1080p video downloads and natel (**As i've said before, MILO, while impressive, is just an A.L.I.C.E program with millions more variables for facial and verbal recognition/response)
, and Nintendo comes in second for more implementation on its new sensor extension, and Sony fell behind with its development of the "Wii remote with a ball on the end" thing. As far as Games they were all the pretty much the same with some technical differences (Primary vs Third party games).

So to summarize:

Presentations
1st - Microsoft
2nd- Sony
3rd - Nintendo

E3 Confrence
1st - Sony
2nd- Nintendo
3rd - Microsoft

Hardware/Games(tie)
1st - Microsoft
2nd- Nintendo
3rd - Sony


13.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 04:00 PM

Forum: Video Games

At 6/2/09 03:59 PM, chickendance333 wrote: The speakers for God of War 3 scare me.

are you there? do they make you involuntarily pee your pants


14.

Happy

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 03:54 PM

Forum: Video Games

At 6/2/09 03:54 PM, Stretchysumo wrote: That's one big ass dog!

What's more impressive is the up's that kid had, i mean he jumped the full length of his body before grabbing that bird dog... thing.


15.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 03:44 PM

Forum: Video Games

At 6/2/09 03:36 PM, KartoTolmex wrote:
At 6/2/09 03:22 PM, Pinoyguy75 wrote:
Yes, bc you're the one they were trying to appeal to, not everyone in the world, just you.
Sorry, forgot people will buy hardware units and separate games for six weapons in another. I'm clearly out of touch.

It's a nice touch, but it isn't killer. Not matter how you slice the bread.

I mean they are trying to expand the psp population and the graphics are getting better and some of the games for it are looking good, which will attract more people. The Series itself will attract at least dozens of people to the psp. Believe me psp would of tanked if they weren't out there

At 6/2/09 03:35 PM, Sammeh wrote:

:Oh please for the love of God don't let the future of gaming be THIS motion sensor bandwagon shit everyone is getting into!

Improved technology isn't a bandwagon, while this ps3 shit isn't improved technology per say, it does lead to revolutionary gameplay. PS3 is just moving a lot slower than its competition.


16.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 03:30 PM

Forum: Video Games

At 6/2/09 03:28 PM, liaaaam wrote: Shits were bricked.

FFXIV Online, only on PS3.

Very nice :P

Now motion controller, gay.

and better yet, it's for ff type games too


17.

Expressionless

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 03:22 PM

Forum: Video Games

At 6/2/09 03:21 PM, KartoTolmex wrote: Uh-oh, ACII exclusives via PSP.

But pointless really. Not going to sway my decision because I can get a handful of blades to cut people.

Yes, bc you're the one they were trying to appeal to, not everyone in the world, just you.


18.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 03:09 PM

Forum: Video Games

At 6/2/09 03:08 PM, Black-Flame wrote: So far, Ninty beat Sony. The numbers of games they announced makes Sony pale in comparison.

Well so far i'm hungry, lets see if that changes too


19.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 02:47 PM

Forum: Video Games

At 6/2/09 02:46 PM, chickendance333 wrote: That translator cracks me up.

What kind of translator is that!?! They couldn't get a smart one who can remember a couple of sentences.


20.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 02:46 PM

Forum: Video Games

At 6/2/09 02:44 PM, Jaresk wrote:
At 6/2/09 02:42 PM, Jezuz wrote: Christ, I want to hear more about new shit for the PS3. Boring shit.
Dude... Pipe down.

Gran Turismo seems good, hope they show gameplay


21.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 02:28 PM

Forum: Video Games

WoW that online multiplayer is ridiculously large


22.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 02:25 PM

Forum: Video Games

At 6/2/09 02:09 PM, Jerkapotamus wrote: You guys really seem to be giving Nintendo a hard time. In actuality, their first-party efforts are about in-line with Microsoft's. It's the third party support that's really lacking.

First-Party Wii Games
1. New Super Mario Brothers- 2009
2. Wii Sports Resort- 2009
3. Wii Fit Plus- 2009
4. Super Mario Galaxy 2- 2010
5. Metroid Other M- 2010

First-Party Xbox 360 Games
1. Forza 3- 2009
2. Halo ODST- 2009
3. Halo Reach- 2010
4. Alan Wake- 2010
5. Crackdown 2- 2010 (?)
6. Milo- 2010 (?)

I'm using the notes I kept during both press conferences, so I'm pretty sure I got all of the first-party games mentioned in both press-conferences (I left out Joy Ride and Shadow Clone because they're downloadable/crappy). Nintendo actually talked about more first-party games in their press conference coming out in 2009 than Microsoft. Now, given, equating Wii Fit Plus, Wii Sports Resort, and New Super Mario Brothers to Forza 3 and Halo is a bit ridiculous.

Still, a lot better than last year and I think third-party is really more to blame for Nintendo's apparent weak lineup. While Microsoft has Left 4 Dead 2, Splinter Cell Conviction, and Modern Warfare 2, Nintendo only has The Conduit, and two on-rails shooters.

As far as the first party games go, Nintendo's lineup is mostly sequels to games with no real story. Nintendo's sequels are just better versions of games they already had, no real new titles on there part. Microsoft's sequels are to quality stories which makes them more than just improved gameplay. Yes the only new game is Alan Wake, but the story and gameplay looks great, whereas Nintendo doesn't seem to have no planned new titles. Microsoft seems to be reaching into there competition's qualities and upping them. Plus X-box live seems unmatched. I love Nintendo, but I was hoping for something new, but I was glad that they did have quality games to look forward to as I have a Wii, but at the same time I'm starting to think about buying a 360. Nintendo's online multiplayer is lacking outside of Mario Kart (Nintendo also need to tap into more driving games). As far as DS, I 'm still looking for a quality title past the LoZ and the "drag the player with the stylus" type games. Overall Microsoft seemed to impress more with there demonstrations, but I still think MILO is a Glorified A.L.I.C.E program.


23.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/02/09 01:31 PM

Forum: Video Games

WoW nintendo, way to utterly disappoint. Same games in newer slightly better sequels. If my Wii wasn't a gift from my cousin, then I would regret having it, but since it's free, w/e. Yes there are some exciting titles, but, nintendo failed to present. While "expanding the gaming population" is a good thing, you have absolutely forgotten about the "hardcore gamers" (e.g. Halo/Gears of War fans). There best games are the primary titles and there letting third party developers come up with games that frankly don't meet up to par. Miyamoto and Nintendo have gotten lazy and stopped developing new and exciting games.

Simply put Nintendo had there executives present and it sounded like it whereas Microsoft let there games speak and they did!


24.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/01/09 09:50 PM

Forum: Video Games

Assasin's Creed


25.

None

Topic: The Elite Guard Barracks

Posted: 06/01/09 09:46 PM

Forum: Clubs & Crews

At 6/1/09 09:44 PM, KrevZabijak wrote: I highly doubt that will happen.
I forgot my user/pass to the KK forums, and I don't feel like going in and crashing their party or even to read what they're up to.
Just too lazy.

yea, but I didn't want to ignore it just in case


26.

None

Topic: The Elite Guard Barracks

Posted: 06/01/09 09:39 PM

Forum: Clubs & Crews

so I'm inactive, but i couldn't ignore this message

Around 12:00PM the Kitty Krew are gonna use the knowledge gained from the Exploiting Newgrounds issues (T.S.A. version, not S.S.) (Mass vote script) to massively attack Newgrounds and vote 0 using tor, Tor has about 250 IPs avaliable so the KK will be able to vote 250 times, on every flash that enters the portal!

from TheGhostBustas (an alt account)

anyone else get this?


27.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/01/09 09:34 PM

Forum: Video Games

At 6/1/09 09:30 PM, Jerkapotamus wrote: A Wii fitness game with yet another peripheral! A camera that tells me how I'm screwing up! Just what I always wanted! Wow Ubisoft, you guys are knocking this one out of the park.

is that what it is? I was paying attention to the actress and the creator lady LoL


28.

Winking

Topic: Official E3 2009 Discussion Thread

Posted: 06/01/09 09:30 PM

Forum: Video Games

I'm likin this your shape trailer


29.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/01/09 09:05 PM

Forum: Video Games

At 6/1/09 09:01 PM, Gustavos wrote: Just saw Red Steel 2 in the Ubisoft conference still going on. I stopped watching because it kept lagging until it actually told me it lost connection with G4's server.

That game doesn't look bad at all. The first cutscene was pretty badass.

the gameplay was pretty smooth and awesome from what I saw and they had PELE to talk about this academy of champions (some kind of funny soccer game), which was alright


30.

None

Topic: Official E3 2009 Discussion Thread

Posted: 06/01/09 08:44 PM

Forum: Video Games

Red Steel 2 look Awesome! I'm definitely getting it when it comes out. Seems everyone has bumped there games to 60fps.


All times are Eastern Standard Time (GMT -5) | Current Time: 07:07 AM

<< < > >>

Viewing 1-30 of 332 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 1012