PSP Hacks - Forums

Go Back   PSP Hacks - Forums > PSP Community > PSP Programming & Development

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 11-04-2009, 11:36 PM
netbeans netbeans is offline
PSP Smarty
 

Join Date: May 2009
Posts: 116
netbeans is on a distinguished road
Exclamation I'm back

Hey everybody. Hows it going. Some of you probably remember me. I released a crazy maze demo of a game I made. I also started to work with pspkevin_17 on zombie vill.

My computer crashed in July or June and I just got it fixed with a new windows installation disc. I'm going to be up in running and doing projects for the psp next week. I have go back and set up my development environment on my computer.

I'm Sorry to pspkevin_17 about the zombie vill game. I had three levels done with save features and zombies chasing you, along with health bars and the whole sha bang before my pc crashed. I'm going to start over on that first and then go into making a 3d medal of honor type game for the psp. I know that will take me a couple months for the 3d shooter game.


It would be nice if someone could post a link or make a tut on how to set up pspgl that way I don't have to look it up again.

Netbeans
Reply With Quote
  #2  
Old 11-04-2009, 11:55 PM
Demonchild's Avatar
Demonchild Demonchild is online now
Moderator With No Life
PSP Titan
 
Join Date: Dec 2007
Location: New York City
Posts: 7,947
Demonchild has a spectacular aura aboutDemonchild has a spectacular aura about
Default

Look at the stickies in the section. That should help.

Also, lesson learned = Back up, back up, back up.
Reply With Quote
  #3  
Old 11-05-2009, 01:50 PM
pirata nervo pirata nervo is offline
Moderator
PSP Titan
 

Join Date: Mar 2007
Location: www.consoleworld.net
Posts: 5,556
pirata nervo is on a distinguished road
Default

Quote:
Originally Posted by Demonchild View Post
Look at the stickies in the section. That should help.

Also, lesson learned = Back up, back up, back up.
None of them refer anything to pspgl.
@netbeans, do a bit of search
__________________

Reply With Quote
  #4  
Old 11-05-2009, 05:36 PM
Stinkee2's Avatar
Stinkee2 Stinkee2 is offline
Programmer
PSP Smarty
 

Join Date: Jul 2009
Location: int main()
Posts: 190
Stinkee2 is on a distinguished road
Default

Quote:
Originally Posted by Demonchild View Post
Look at the stickies in the section. That should help.

Also, lesson learned = Back up, back up, back up.
And dont forget to slipstream a copy of Windows XP so you never have to pay to fix your computer .
__________________
-----------------------------------------
View my current project's Progress Here
Reply With Quote
  #5  
Old 11-05-2009, 06:45 PM
pspjoke's Avatar
pspjoke pspjoke is offline
Programmer
PSP Guru
 

Join Date: Mar 2008
Location: U.S.
Posts: 1,643
pspjoke is on a distinguished road
Default

Quote:
Originally Posted by Demonchild View Post
Look at the stickies in the section. That should help.

Also, lesson learned = Back up, back up, back up.
i love windows 7's easy ass hell backup feature.

had to use it once cause i lost a restore point when messing with unsupported software (final uninstaller)
__________________
http://levoneprojects.net23.net/

++rep me if i helped you please.
Ahh, shit. Stupidity is on the rise again.
went legit Oct. 31, 09'
piracy is wrong, please don't do it.

Reply With Quote
  #6  
Old 11-06-2009, 10:53 PM
netbeans netbeans is offline
PSP Smarty
 

Join Date: May 2009
Posts: 116
netbeans is on a distinguished road
Exclamation Done Setting Up Development Environment

I have finished setting up my development environment and will start coding if not this weekend then by midweek next week.
Reply With Quote
  #7  
Old 11-08-2009, 04:48 PM
MTN's Avatar
MTN MTN is offline
Programmer
PSP Hacks Member
 
Join Date: Jan 2009
Location: ...
Posts: 272
MTN Has a Beginner Reputation
Default

i hate 7 , it crashed over a trojan and fucked my motherboard ...

for pspgl go to :
psp-programming.com and gothi.nl its not the best tut but it helps (a little)

edit : gothi.nl is closed
Reply With Quote
  #8  
Old 11-11-2009, 09:22 PM
netbeans netbeans is offline
PSP Smarty
 

Join Date: May 2009
Posts: 116
netbeans is on a distinguished road
Exclamation Help with PSPGL

I went to the pspgl site and all it says is type this into cygwin:
svn co svn://svn.pspdev.org/psp/trunk/pspgl
I did that and a pspgl folder is made in
C:\cygwin\home\user\

What do I do now.

Please help. There are no tuts online on how to set up pspgl.
Reply With Quote
  #9  
Old 11-12-2009, 03:39 PM
pirata nervo pirata nervo is offline
Moderator
PSP Titan
 

Join Date: Mar 2007
Location: www.consoleworld.net
Posts: 5,556
pirata nervo is on a distinguished road
Default

Doesn't it come with a readme file?
__________________

Reply With Quote
  #10  
Old 11-12-2009, 08:29 PM
netbeans netbeans is offline
PSP Smarty
 

Join Date: May 2009
Posts: 116
netbeans is on a distinguished road
Exclamation This is what the readme says

This is what the readme says:


Code:
Hi,

pspGL is a pure, minimal, hardware-accelerated implementation of something like
OpenGL for the Playstation Portable. Before you are able to compile it, you
need to set up a PSP toolchain and SDK as described on http://pspdev.org.

Export PSP_MOUNTDIR=<your_PSP_mountpoint> and PSP_REVISION=<your_PSP_revision>.
Then type 'make' to build, 'make -C <demodir> install' to build and install one
of the demos.  Here an example how to build for a 1.50 PSP on MacOS-X:

   $ export PSP_MOUNTDIR=/Volumes/PSP
   $ export PSP_REVISION=1.50
   $ make && make -C tests clean install
   $ make && make -C test-glut clean install

All OpenGL-ES fixed-point commands are not implemented. Please take a look
in the GLES/gl.h header file for the OpenGL commands implemented additionally
to the minimum OpenGL-ES profile. Define PURE_GLES before including this file
if you want to switch off these extensions.

You can also use the GL/gl.h include set, but should avoid double-precision
function calls for performance reasons.

Display lists are used internally, but not exposed to the GL API.

Only a minimum set of the core GLUT functions is implemented.

pspgl_misc.[hc] contains some debug functions to dump PSP GE command buffers, 
the GE register set and the GE matrix stack to the memory stick. In the
tools/ directory you find a rough disassembler for GE packets, maybe you find
this useful to debug your problems. Please note that still a lot of commands
are missing, please send patches if you enhance this functionality.

The PSP has been designed for gaming, so some OpenGL features that are rarely 
used in games are missing and some have only somewhat limited support by the
Hardware. Here is a short list of things you should consider when writing 
GL applications for the PSP:

 - only 4 light sources are supported
 - antialiasing can get switched on/off only globally
 - No user-defined clip planes are supported
 - only single-pixel wide lines and points
 - We don't know yet whether/how the fog function can get changed.
 - Only single-sided lighting, for two sided shading you need a CW and a CCW pass.
 - No wireframe rendering, we don' know whether the PSP supports this.

This list is by no means complete, please report if you encounter other issues.

All files are BSD-licensed, feel free to use it in free or commercial projects.
enjoy, have fun,

See http://www.goop.org/psp/gl for more documentation about this library.

Holger Waechtler
Jeremy Fitzhardinge
Reply With Quote
Reply

 



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 07:44 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©