Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
2k views

Best way to display & program game board?

What would be the best way to display & program simple game board (say chess, checkers and such) in C#? In terms of controls and underlying game logic. An idea that came to my mind was to use ...
4
votes
2answers
431 views

Java Swing Key Event base

In one of my menus, one menuItem's shortcut key is Ctrl+Greater code for that is KeyEvent.VK_GREATER, Event.CTRL_MASK but when I press Ctrl+Greater it's not working.... Can any one please suggest? ...
4
votes
5answers
922 views

Cheap PowerPC Evaluation Board?

I've been trying to learn embedded software development for some time (been doing software for almost 15 years, 10 in Java, plus good knowledge of C/C++/X86 Asm from College.) Started playing with a ...
3
votes
4answers
145 views

Board game pathfinding - finding multiple optimal paths

I have a very simple pathfinding task- a board game played on an 8x8 grid, with each square either being passable or not. What I'm looking for is an algorithm which will give me the best n paths to ...
3
votes
4answers
2k views

How do I represent a hextile/hex grid in memory?

Say I'm building a board game with a hextile grid, like Settlers of Catan: Note that each vertex and edge may have an attribute (a road and settlement above). How would I make a data structure ...
2
votes
2answers
698 views

Free JavaScript chessboard

Could anybody suggest a free (as in freedom) and open source JavaScript chessboard? My plan is to hook it up with some server-side Python code, most probably it will be the flask web framework. I ...
2
votes
5answers
1k views

Best data structure to represent a game board

Hey, I'm trying to bring a board game to the computer world, and the board consists of 16 spaces, 6 for each side and 4 in the middle. The board is diamond-shaped and two ends represent both team ...
1
vote
1answer
95 views

.h and .m files for view controllers added within storyboard xcode 4

I've created the flow of my application with storyboard. It's a navigation based storyboard layout with a few stacks of views. Where can I create .h and .m files to actually make the app DO things? ...
1
vote
1answer
121 views

Transforming of images in Java. Transferring of images through sockets

I have a laptop and Microcontroller Evaluation Board MCB1700 with microcontroller NXP1768. MCB1700 has Ethernet port, LCD (320 x 240) etc. I have IDE µVision V4.03q for developing and downloading ...
1
vote
3answers
161 views

Find all words placed on a Scrabble board

Any idea whats a simple and fast way to get all words placed on a Scrabble board while the board is represented by 2D Array of chars? Thanks in advance
1
vote
2answers
330 views

PICkit2 flashing led with Button

i am using a PICkit2 Low Pin Count Demo board with a 16f690 chip. i have been able to write simple code to turn the LEDs on and off, but upon trying to utilize the push button to change the state of ...
1
vote
6answers
477 views

Embedded Linux and device driver development

I plan to learn embedded linux and writing linux device drivers. I need a dev board where I can, Build and boot it with a linux distribution. Write drivers for peripherals in the board. (In future) ...
1
vote
3answers
127 views

Using textboxes in a class

So for a coding project I need to create an Othello game. Now I'm trying to do most of it on my own. Basically trying to re-learn C#. I'm just trying to create a board. Now I am using textboxes and B ...
1
vote
6answers
297 views

Kanban Board Flow and Columns' Relationships

Given the basic flow on a Kanban board: | Backlog | Dev | QA | Deploy | After reading books/articles/presentations it got transformed roughly into Business -> | Backlog | Input | ...
1
vote
1answer
3k views

chess board in java

This is my code below import javax.swing.*; import java.awt.*; public class board2 { JFrame frame; JPanel squares[][] = new JPanel[8][8]; public board2() { frame = new JFrame("Simplified ...
1
vote
1answer
196 views

How to code an external login for Woltlab Burning Board 3?

I am looking for a way to make my own login formular in PHP to log in with my extisting Wbb3 account. The login will be on the same server, so i've got access to the database and the salts, but I'm ...
1
vote
1answer
4k views

Sample Android BSP(Source) for ARM

I am looking for a ARM processor version of Android BSP to port it for one of my experimental boards. Where can I download this? Any help in this is greatly appreciated. Thomas
0
votes
1answer
60 views

Ploneboard error after upgrading Plone 4.0.5 to 4.1.3

When starting a conversation, entering Title and Body text and press the save button (blue disk) I get this error in the log: ERROR Zope.SiteErrorLog 1326636216.360.72448689069 ...
0
votes
1answer
64 views

Must a program be 64-bits in order to get the speed benefit of having a x64 machine?

I'm planning on using a 64-bits bitboard to represent a chessboard in a basic chess playing program. The program will run on a 64 bits machine, but will I be able to take advantage of all 64 bits if ...
0
votes
2answers
75 views

C++ 8 By 8 Board

im trying to implement the n-queen problem board game and im having problems with the board so what am i doing wrong here in this displayboard function? its suppose to implement an 8 by 8 empty board ...
0
votes
1answer
29 views

Level board creation in cocos2d

Am new to cocos2d. I have done a game with 5 levels. i have completed everything in game play.i'm getting much struggle in making level board. My problems are, i need to display the level board. i ...
0
votes
3answers
153 views

Best GUI Approach with Java for a Monopoly Board Game

I have a project to create a multi-player monopoly game I have a pretty good idea how to implement it but until now I had practically no experience with GUIs. What I want to do is I want the board to ...
0
votes
1answer
33 views

Knowing Which Button Was pressed! GTK

Im making a board like this GtkWidget *board[x][y]; If I do an array of buttons, how can I know which button was pressed? Does g_signal_connect(G_OBJECT(board[][]), "clicked",///I want to know ...
0
votes
2answers
94 views

Connecting Android Development Board to Ubuntu 11.04

I recently Received a development Boardf from TI Which is running Android on OMAP 3621 and i am trying to connect it to my machine through USB. The Board says Connected in Debugging Mode. ...
0
votes
1answer
65 views

PHP based forum integrated into existing site [closed]

I'm looking for forum board engine that is easy to integrate with SMARTY (a pre generated templates would be nice) and is easy to integrate to existing site writen in PHP and MySQL. The engine have to ...
0
votes
0answers
37 views

Samsung S5PC110 Kit Android source

Are there any chances to find the source code? I want to try to compile the kernel for Dropad A8X, and that board is pretty similar.
0
votes
1answer
109 views

Moving characters and applying move to board

Hey everyone, I previously asked a question on how to create a 2-D grid for a board game in Python and have now encountered another problem with making this board game. What i'm trying to do is move ...
0
votes
1answer
388 views

Creating a 2D grid for a board game in python

I'm taking an introductory course to computer science using Python and we were given an exercise to make a board game(dogems). I'm having troubles constructing the board. The program is suppose to ...
0
votes
1answer
115 views

mp.release crashing soundboard app

I am using the following code to play a sound and after a while it will stop playing sounds, this is because of too many instances of mediaplayer open I believe so I added an extra mp.release(); and ...
0
votes
0answers
177 views

review board, post-review CommandLine tool and upload new File

I have some problems to upload new File with the post-review CommandLine tool from ReviewBoard. I want to create a new review-request with Code that committed the first time in the svn-repository. ...
0
votes
1answer
387 views

android board game

I want to create a board game (9x9 grid) for the android. I was wondering if there where any suggestions as to books, blogs, tutorial, or even open source programs to look into. I was planning on ...
0
votes
1answer
82 views

ask for some references for embedded telecom board

I am involved with an embedded software development for telecom industry. I have zero experience before with such embedded hardware devices. I got a network processor board, which is featured in ...
0
votes
1answer
230 views

Implementation of the board in an Android board game

How can I implement a board for a board game on Android, with the board having clickable cells and movable pieces in it? Can I use map editors like TiLed? How?
0
votes
0answers
37 views

Integrating Group Awareness (rating based system) via JS in multiple discussion boards

I'm about to develop a group awareness tool for discussion boards. I did some research on the distribution of current software. But I thought about developing a tool on a global basis, not just only a ...
0
votes
2answers
255 views

remove header from phpbb3

How can I delete this header from my phpbb3. Thanks
0
votes
3answers
215 views

Job Board script for Joomla 1.5

I'm looking for a Job Board components to add into Joomla 1.5. Is there anyone here who tested something like this. Thanks.
0
votes
1answer
681 views

How to represent a Board Panel in Java for a game?

I wanna fix a 2D board for a game. I've already fixed other panels for the Gui and everything goes well. But the panel for the board cant be printed on the window. I'm a bit confused about it as i ...
0
votes
1answer
52 views

How to get a 'hanging note' animation for ipad?

I need to get the animation of a note being stuck on a board for an ipad app that i am doing! I am using a UITableView for this. Its should have a tilt so that it looks that it has been stuck up on ...
0
votes
1answer
126 views

ASP.NET Application – Building Online Tutoring/Training Board

Dear All, We are working on ASP.NET applications development. In the current application we need to create an online tutoring/training board where both Tutor and Students can join ...
0
votes
0answers
280 views

Do you know any good asp.net job board, eventually open source or almost free? [closed]

Did you use or programmed such a web application? There are plenty of job boards in php, but do you know any in asp.net mvc? Thanks.
0
votes
1answer
349 views

Dealing with quotes in TinyMCE, PHP message board

I decided that my client would be overwhelmed by a lot of bells and whistles in a message board like phpBB, so I started from scratch. So far everything has been working really well, apart from a ...
0
votes
1answer
259 views

phpbb - how to restrict access to Board index

my client wants me to create a series of websites, each with its own forum. i have installed and played around with phpbb before and it is my understanding that each installation is capable of ...