the-mac / TheBoardLibrary

The most advanced mobile board game platform made in android that is available under the GPL, and it includes multiplayer, tutoring/guide facilities (to teach someone how to play your game), board editor function (to learn more about the games you play), and much more...
http://on.fb.me/1MIc51o
GNU Lesser General Public License v2.1
1 stars 5 forks source link

Knight on a1, Illegal Moves #6

Open cdm2012 opened 6 years ago

cdm2012 commented 6 years ago

The Knight on a1 shows illegal moves, see image:

screenshot_20180125-035153

cdm2012 commented 6 years ago
<us.the.mac.knighted.KnightedBoard
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:board="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Knighted" >

    <us.the.mac.knighted.pieces.Knight
        tools:ignore="RequiredSize"
        board:square="a1"
        board:color="white" />

    <us.the.mac.knighted.pieces.Knight
        tools:ignore="RequiredSize"
        board:square="h8"
        board:color="black" />

</us.the.mac.knighted.KnightedBoard>