Quadrilateral Conundrum
-
- Interested PSXDEV User
- Posts: 5
- Joined: Dec 05, 2018
Quadrilateral Conundrum
Quadrilateral Conundrum
Username: Sleeping Burrito
Project Title: Quadrilateral Conundrum
Time to Complete: 1 week
SDK: Psy-Q
Genre: Game
Latest Release: V1.0
In Development: No
Initial Release Date: 12/4/2018
Last Date Updated: NA
Controller: Classic
Players: 1
Memory Card: NA
Languages: Eng
Region: NTSC
Burn and Play: Yes
Executable Included: Yes
Source Included: Yes
Quadrilateral Conundrum is a simple Tetris homebrew clone for ps1. PS1 was my first game system and with the help with http://www.psxdev.net/ resources I was able to make something for it! I plan on making more interesting projects in the future if I can figure out how to program them.
Screenshots:
Video:
https://youtu.be/gJWoWCCUJnc
Credits:
PS-EXE, CUE + BIN and Source Code: https://github.com/sleepingburrito/Qadr ... lConundrum (I know about the spelling error, oops!)
I attached just the CUE-BIN to this post and the source is on the github.
You do not have the required permissions to view the files attached to this post.
-
- Interested PSXDEV User
- Posts: 5
- Joined: Dec 05, 2018
I have no excuses other than I am not a good programmer. Everything was in only 1 file and I sort of made the others just to make it less crowded but its defiantly me being lazy than doing something in the right way and I admit it.
-
Verified
- Extreme PSXDEV User
- Posts: 131
- Joined: Jul 17, 2013
Aside from putting function definitions inside another .c file rather than inside headers, you should also put include guards in your header files to avoid problems such as the one mentioned by Xavi.
It's no hassle at all, e.g. in DRW.H you should put something like this at the beginning of the file:
then append this at the end of the file:
and you're good to go.
As for the project itself, nicely done - it's always nice to see more people joining the scene
It's no hassle at all, e.g. in DRW.H you should put something like this at the beginning of the file:
Code: Select all
#ifndef DRW_H
#define DRW_H
Code: Select all
#endif
As for the project itself, nicely done - it's always nice to see more people joining the scene
-
- Interested PSXDEV User
- Posts: 5
- Joined: Dec 05, 2018
Will do, I will add the guards right now to my file. All future projects will have it now. Thank you!Yagotzirck wrote: ↑December 5th, 2018, 9:40 pm Aside from putting function definitions inside another .c file rather than inside headers, you should also put include guards in your header files to avoid problems such as the one mentioned by Xavi.
It's no hassle at all, e.g. in DRW.H you should put something like this at the beginning of the file:then append this at the end of the file:Code: Select all
#ifndef DRW_H #define DRW_H
and you're good to go.Code: Select all
#endif
As for the project itself, nicely done - it's always nice to see more people joining the scene
Who is online
Users browsing this forum: No registered users and 0 guests