Java Powder Game

  • Factorial
    4th Apr 2015 Banned 0 Permalink
    This post is hidden because the user is banned
  • WinstonsDomain
    4th Apr 2015 Member 0 Permalink

    Thanks! I hope to get github working; still haven't figured out how to move an existing project to it. Installed both github and Egit for eclipse.

     

    @Lord_Bowserinator (View Post)

     Yea the FPS is a big issue right now but I'm pretty sure it's because on particle move it loops through every particle and I should be doing it another way.

  • Lord_Bowserinator
    4th Apr 2015 Member 0 Permalink

    @NUCLEAR_FOX (View Post) Seriously Lord Bowserminator? Is my name that hard to remember? 

     Oh yeah looping through each particle per particle really makes it slower, why do you need to do that? 

    Edited once by Lord_Bowserinator. Last: 4th Apr 2015
  • EE
    4th Apr 2015 Banned 0 Permalink
    This post is hidden because the user is banned
  • NF
    4th Apr 2015 Member 0 Permalink

    @Lord_Bowserinator (View Post)

     Yes when I typed that... :( I was tired.

  • Lord_Bowserinator
    5th Apr 2015 Member 0 Permalink

    @NUCLEAR_FOX (View Post)

     I understand. Also there's a n in "Feyman"

  • WinstonsDomain
    6th Apr 2015 Member 0 Permalink

    @EE (View Post)

     Graphics / Graphics2D and a BufferedImage

     

    @Lord_Bowserinator (View Post)

     I'll have to end up doing that anyways when painting the window but before I used a List<Particle> and had to loop through each one and check (x, y) points. Changed it to Particle[][] and fps is no longer an issue.

     

    I'd really like to move this on to github and I was able to make a local git respository with Egit (Eclipse) and make commits but can't figure out how to push it to github.

     

     

    Edit:

    First download link added and new image.

    Edited 2 times by WinstonsDomain. Last: 6th Apr 2015
  • io
    6th Apr 2015 Member 0 Permalink

    Use 

    $ cd [proyect's directory]
    $ git remote add origin http://github.com/Username/RepoName.git
    $ git push github master
  • WinstonsDomain
    9th Apr 2015 Member 0 Permalink

    I've finally got a working git repository made. I also rewrote everything again to make element creation easier and hopefully make things faster; display, game, fps counters are all in different threads.

  • Factorial
    9th Apr 2015 Banned 0 Permalink
    This post is hidden because the user is banned