board

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 Picture Box (or class inheriting from it) with Board & Field classes. Is that a decent solution after all? How would I separate graphics from...

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 bases. In the game, peices only move foward towards the enemy"s base (with special abilities of course). So here is my question: what do you th...

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 ...

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 which represents this board? What are the patterns for accessing each tile's neighbors, edges and vertices? ...

Cheap PowerPC Evaluation Board?

Hello all, 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 PIC-based evaluation board just for kicks. Where I work, there is a dept. they have some openings on embedded systems from time...

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

Hey, 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 missing the way how to encrypt the password. Any tutorials? ...

phpbb - how to restrict access to Board index

hello to all, 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 creating many forums. i already created a few using the same installation in another project. in each forum's "main page" there i...

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 Chess"); frame.setSize(500, 500); frame.setLayout(new GridLayout(8, 8)); for (int i = 0; i < 8; i++) { for (int j = 0; j < ...

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 | Development | QA | Deployment | Closed | Marketing -> | | Queue |--------------------|--------------------| Queue | ...

Dealing with quotes in TinyMCE, PHP message board

Hi everyone, 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 little issue with quotes in replies. When the user clicks Quote, they see this (using tinyMCE as my WYSIWYG): This is a blockq...

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 need a really minimal set of features: a way to display a position on the board (not only the initial one) when generating the HTML code by ...

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

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. ...

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 and takes training sessions on different subjects. In this regard, could you please let me know the following information, if you have an id...