- Strength to Increase Rep
- +2
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: If I were you, I would start working on improving your logic skills before diving into more complex game development and working with engines. start with 2D games and do some simple game like breakout. you may do using ascii graphics first so that you are not overwhelmed learning too … | |
Re: i thought he wants to convert the program to a flowchat | |
Re: welcome. btw, i recommend irrlicht. i have great success with it working with 3D. | |
Re: I think that is expected. You selected 3 so only 3 will be sent. For others hidden, all will be sent | |
Re: I agree have 2 stacks. E.g. do and redo. doOperation(String str) { do.add(str); } undo() { String s= do.pop(); redo.add(s); } redo() { String s= redo.pop(); do.add(s); } | |
Re: If just rectable collision detection, just test the for corders if inside the rect. boolean collide(int x1, int y1, int w1, int h1, int x2, int y2, int w2, int h2) { return collide(x1, y1, w1, h1, x2, y2) || collide(x1, y1, w1, h1, x2+w2, y2) || collide(x1, y1, w1, … | |
Re: cant you just convert it to a decimal number (e.g. int), add them up, and then convert back to binary? | |
Re: select * from ( select_stmt1 union select_Stmt2) as temp_tbl | |
Re: not tried but you may try select SID, count(*) from student s, sborrow b where s.SID = b.SID group by s.SID order by count(*) desc limit 1 | |
Re: better to host on a vps as you could control everything and not rely on your host | |
Re: If you want to take out the time component, use date function. E.g. where date(tbl.datefield) >= date(:dateparam) | |
Re: the first time you run it, the database if preparing execution plan. afterwards, when it sees the same query again, it will retrieve execution plan from a cache. mysql also does query caching too, so it is possible the result you got are cached. | |
Re: could be out of topic, but i strongly suggest PDO | |
Re: we can only give advice on tech problems. for creative, i think you have to resolve yourself | |
Re: i suggest working on gameplay programming before doing any api stuff. I mean, try working on some logic programming. E.g. implement a number guessing game. Then make up more and more complex game to write. | |
| Re: learning bash is a good investment. very useful if you are into servers and such |
Re: 1. is C/C# worth learning if you have basic knowledge of c++ and other programing languages such as python,ruby,lua....... focus on the platform you want to write code into. for desktop games of course c/c++. for android, then c/c++ is not required 2. i know math is needed in programing … | |
Re: I recommend 3ds max because it is easy to learn and geared towards gaming. I think they are popular among game developers because it is easy to extend via custom made plugins. you can export your objects using .obj format and load it on irrlicht. try irredit (editor) to help … | |
Re: CXF in my opinion is the best framework for this. You may also try JEE, as it only needs annotation to do this. But of course, it is contract last. I prefer contract first Frameworks | |
Re: Try this post: http://www.developer.com/design/article.php/3711331/Implementing-an-Anti-Virus-File-Scan-in-JEE-Applications.htm | |
Re: idx1 = -1; idx2 = -1; for (int i=0; i<arr.length; i++) { if (num1 == arr[i] && idx1 == -1) { idx1 = i;} if (num2 == arr[i] && idx2 == -1) { idx2 = i;} } if (idx1 != -1 and idx2 != -1) { answer = Math.abs(idx2-idx1); } | |
Re: You can access using request.getParameter | |
Re: You need AJAX request to sent to your backend | |
Re: You may need jquery and css to do that. E.g. http://www.chartjs.org/docs/ | |
Re: You can import the class and be able to access it inside the jsp <%@ page import="package1.myClass1,package2.myClass2,....,packageN.myClassN" %> |