gaurdianAQ![]() Member Posts: 106 From: Registered: 01-15-2007 |
ya I have a question which is better blitzmax or blitz3D I have the book game programming for teens and that teaches you blitzplus and I am going to be getting 3D game programming for teens but which language is easier or are they both easy | ||||
Mene-Mene![]() Member Posts: 1398 From: Fort Wayne, IN, USA Registered: 10-23-2006 |
I was in the same predicament. I chose max. Correction, Plus, 3d, and Basic are all in the same ball park, just some have more/less functions. Max is more of a redo, it like Visual Basic (Never done any by the way) but has a lot of the same things of 3d+B (3d, Plus, and Basic) like, Sensible names, easy format, and stuff like that. Correction 2, Game Programming for Teens is for BB (Blitz Basic) not B+. Basic Pros: Basic Cons: Plus Pros: Plus Cons: - Lacks 3d 3d Pros: 3d Cons: Max Pros: Max Cons: If Why did you get 3d game programming, if you got Game programming, I would suggest choosing what you want, then going after it at first. Note: Some of the cons for 3d don't exist in the others due to lack of 3d. ------------------ |
||||
spade89![]() Member Posts: 561 From: houston,tx Registered: 11-28-2006 |
hey i know many people here know a lot about blitz's and basics, but the first time i even heard of blitz basic or blitz max is on this site, the first non-scripting language i learned will be c++, after that i learned vb and java, so i have a couple of questions about the above languages too: 1)are they scripting languages? 2)are they anything similar to c/c++ in syntax or grammer?(i know java script is)/or are they like vb? 3)are they visual based languages,or are they start from scratch type of languages? 4)for what purpose are they useful? looking at the conversation b/n you guys i think they are useful for games....but are they useful for non-gaming purposes?like can you make console app's using these languages? 5)what importance do they have in the computing industry?i mean is it something people look as a requirement on your resume? 6)and finally what contributions do they have in the computing industry? has there been any technological revolutions or discoveries using this languages?i know that most algorithms we use today like bubble sort or quicksort or others ,or most technologies like the socket,*nix's,or most code for robotic systems(including the mars rover)were coded using c++,and most web-based tech's like soap,xml,the servlet/jsp,applets,and platform independent app's were made using java ,and that vb popularized the activex,but i never heard of these languages,so it's kind of a puzzle for me how come i never heard of these languages?what is their contribution for the computing industry or the game industry?
------------------ |
||||
gaurdianAQ![]() Member Posts: 106 From: Registered: 01-15-2007 |
ok I will get blitz3D and then maybe move onto blitzmax but ok I have another question what code can I use to add a bullet system cause I cannot seem to get the bullet to move on its own maybe that is somewhere later in the book but I would really like to know cause I have to hold down the space bar to make it move I tryed a while wend loop and it just made the bullet move faster than the blink of an eye | ||||
Mene-Mene![]() Member Posts: 1398 From: Fort Wayne, IN, USA Registered: 10-23-2006 |
Its so fun helping people and being knowledgable about it. ![]() ![]() Spade: Note: I'm not the best person to ask. Look up BlitzResearch or www.blitzbasic.com or www.blitzplus.com or www.blitzmax.com . There may also be a blitz3d.com. Guardian:
------------------ [This message has been edited by Mene-Mene (edited January 15, 2007).] |
||||
spade89![]() Member Posts: 561 From: houston,tx Registered: 11-28-2006 |
thanks M^2,i'll look up those links,looking at the code you wrote for guardian the syntax is similar to vb,but the commenting is like assembly. ------------------ |
||||
gaurdianAQ![]() Member Posts: 106 From: Registered: 01-15-2007 |
how do I implement this? | ||||
Mene-Mene![]() Member Posts: 1398 From: Fort Wayne, IN, USA Registered: 10-23-2006 |
Guardian: The code will work on its own. Just create variables the state whether something should happen or not. if you press a button you activate the variable. Spade: BTW, BB.com,BM.com, and B+.com are all the same place, just different home sites of Blitz. This and those are the only sites I know of for Blitz/Coding help. I'm hoping to register soon seeing as I have BM now. I'm sidetracking. Here's some BM code:
At that small of a level, its pretty much the same besides the commenting. But as you go higher, arrays and such, it changes from BB. BB:
BM:
BB:
I know BB pretty well, but I only just got BM since christmas so I'm fuzzy on that above technique. As you can see there are some bigger differences.
[This message has been edited by Mene-Mene (edited January 16, 2007).] |
||||
gaurdianAQ![]() Member Posts: 106 From: Registered: 01-15-2007 |
I figured it out it was simple I just needed to add a flip command in the while wend loop |