-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
927118a
commit df4df36
Showing
48 changed files
with
180 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
*.htm linguist-detectable=true | ||
*.htm linguist-detectable=false | ||
*.gambas linguist-detectable=true | ||
*.class linguist-detectable=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
* Mon Apr 27 2020 Junior Criste <[email protected]> 2.0.0 | ||
- Finish 2.0 | ||
|
||
* Mon Apr 20 2020 Junior Criste <[email protected]> 1.7.0 | ||
|
||
* Sat Apr 18 2020 Junior Criste <[email protected]> 1.7.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
Title=Open Tic Tac Toe | ||
Startup=MenuG | ||
Icon=assets/Imgs/icon_v2.png | ||
Version=1.7.0 | ||
Version=2.0.0 | ||
Component=gb.image | ||
Component=gb.gui | ||
Component=gb.form | ||
|
@@ -17,9 +17,23 @@ VendorPrefix=JuniorCriste | |
[email protected] | ||
Url=www.informaticode.com.br | ||
License=General Public License | ||
PackageName=opentictactoe-1.7.0 | ||
PackageName=opentictactoe-2.0.0 | ||
PackageVersion=2 | ||
CreateEachDirectory=1 | ||
Packager=1 | ||
Systems=ubuntu | ||
Menus=ubuntu:"Games/Puzzles" | ||
Systems=debian,fedora,suse,slackware,ubuntu | ||
SameDependencies=1 | ||
Menus=debian:"Games/Strategy" | ||
Categories=debian:"Games" | ||
Groups=debian:"games" | ||
Menus=fedora:"Game/Logic Game" | ||
Categories=fedora:"Game;Games;LogicGame" | ||
Groups=fedora:"Amusements/Games" | ||
Menus=slackware:"Game/Logic Game" | ||
Categories=slackware:"Game;LogicGame" | ||
Groups=slackware:"Amusements/Games" | ||
Menus=suse:"Game/Logic Game" | ||
Categories=suse:"Game;LogicGame" | ||
Groups=suse:"Amusements/Games/Strategy" | ||
Menus=ubuntu:"Games/Strategy" | ||
Groups=ubuntu:"games" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
# Gambas Form File 3.0 | ||
|
||
{ Form Form | ||
MoveScaled(0,0,85.4286,57) | ||
MoveScaled(0,0,86,57) | ||
Icon = Picture["assets/love.png"] | ||
Resizable = False | ||
{ cred PictureBox | ||
MoveScaled(0,0,85.7143,57.1429) | ||
MoveScaled(0,0,86,57) | ||
Picture = Picture["assets/Imgs/creditos.png"] | ||
Mode = PictureBox.Fill | ||
} | ||
{ fakelink PictureBox | ||
MoveScaled(25,49,37,5) | ||
Mouse = Mouse.Pointing | ||
} | ||
{ DONATE PictureBox | ||
MoveScaled(2,51,17,4) | ||
Picture = Picture["assets/Imgs/donate.png"] | ||
Mode = PictureBox.Contain | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -292,6 +292,8 @@ Public Sub botoesclicados() | |
Endif | ||
atualizador | ||
gradeatual.Visible = True | ||
|
||
pegafocus.SetFocus | ||
End | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
' Gambas class file | ||
|
||
|
||
Public Sub DONATE_MouseDown() | ||
|
||
Shell "firefox https://opentictactoe.informaticode.com.br/2020/04/make-donation.html" | ||
|
||
End | ||
|
||
Public Sub Form_Open() | ||
|
||
|
||
DONATE.Mouse = Mouse.Custom | ||
DONATE.Cursor = New Cursor(Picture["./assets/Imgs/cursormini2.png"]) | ||
|
||
backtogame.Mouse = Mouse.Custom | ||
backtogame.Cursor = New Cursor(Picture["./assets/Imgs/cursormini.png"]) | ||
|
||
fakelink.Mouse = Mouse.Custom | ||
fakelink.Cursor = New Cursor(Picture["./assets/Imgs/cursormini.png"]) | ||
|
||
End | ||
|
||
Public Sub backtogame_MouseDown() | ||
|
||
MakeaDonation.Hide | ||
|
||
|
||
End | ||
|
||
Public Sub fakelink_MouseDown() | ||
|
||
Shell "firefox https://opentictactoe.informaticode.com.br/2020/04/make-donation.html" | ||
|
||
End |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Gambas Form File 3.0 | ||
|
||
{ Form Form | ||
MoveScaled(0,0,42,37) | ||
Background = &HE0E0E0& | ||
Icon = Picture["assets/Imgs/Logo_love.png"] | ||
Resizable = False | ||
{ DONATE PictureBox | ||
MoveScaled(0,0,42,41) | ||
Picture = Picture["assets/Imgs/donateBig.png"] | ||
Alignment = Align.Center | ||
} | ||
{ backtogame PictureBox | ||
MoveScaled(26,30,15,6) | ||
Picture = Picture["assets/Imgs/not.png"] | ||
Mode = PictureBox.Contain | ||
} | ||
{ fakelink PictureBox | ||
MoveScaled(8,21,25,8) | ||
Mouse = Mouse.Pointing | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,54 @@ | ||
# Gambas Form File 3.0 | ||
|
||
{ Form Form | ||
MoveScaled(0,0,46,55) | ||
MoveScaled(0,0,46,56) | ||
Background = &H073140& | ||
Text = ("Open Tic Tac Toe") | ||
Icon = Picture["assets/Imgs/mini_icon_v2.png"] | ||
Resizable = False | ||
{ op1 PictureBox | ||
MoveScaled(1,3,43.7143,21.4286) | ||
MoveScaled(1,4,43.7143,21.4286) | ||
Mouse = Mouse.Pointing | ||
Picture = Picture["assets/Players/ctrl1.png"] | ||
} | ||
{ op2 PictureBox | ||
MoveScaled(1,29,43.7143,21.4286) | ||
MoveScaled(1,30,43.7143,21.4286) | ||
Mouse = Mouse.Pointing | ||
Picture = Picture["assets/Players/ctrl2.png"] | ||
} | ||
{ infp1 Label | ||
MoveScaled(7,24,35,5) | ||
MoveScaled(7,25,35,5) | ||
Font = Font["Geometos,+2"] | ||
Foreground = &HC0C0C0& | ||
Text = ("PLAYER X PLAYER") | ||
Alignment = Align.Center | ||
} | ||
{ infp2 Label | ||
MoveScaled(5,50,35,5) | ||
MoveScaled(5,51,35,5) | ||
Font = Font["Geometos,+2"] | ||
Foreground = &HC0C0C0& | ||
Text = ("PLAYER X COMPUTER") | ||
Alignment = Align.Center | ||
} | ||
{ !sett PictureBox | ||
MoveScaled(43,0,3,4) | ||
MoveScaled(42,0,3,4) | ||
#Public = True | ||
Mouse = Mouse.Pointing | ||
Picture = Picture["assets/Imgs/sett.png"] | ||
Mode = PictureBox.Contain | ||
} | ||
{ !hist PictureBox | ||
MoveScaled(39,0,3,4) | ||
MoveScaled(5,0,3,4) | ||
#Public = True | ||
Mouse = Mouse.Pointing | ||
Picture = Picture["assets/Imgs/hist.png"] | ||
Mode = PictureBox.Contain | ||
} | ||
{ !info PictureBox | ||
MoveScaled(1,0,3,4) | ||
#Public = True | ||
Mouse = Mouse.Pointing | ||
Picture = Picture["assets/Imgs/info.png"] | ||
Mode = PictureBox.Contain | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
clear && cd ~ && cd .opentictactoe-cfg/configure && if [ -e configBG.txt ]; then echo arquivo existe; else echo Arquivo nao existe; fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
clear && cd ~ && if [ -e .opentictactoe-cfg/configure ]; then echo DIRETORIO JA EXISTE; else echo CRIANDO DIRETORIO; mkdir .opentictactoe-cfg; cd .opentictactoe-cfg && mkdir configure; echo AGORA DIRETORIO JA EXISTE; fi; cd ~ && cd .opentictactoe-cfg/configure && if [ -e configApp.txt ]; then echo ARQUIVO JA EXISTE; else touch configApp.txt; echo mus3 > configApp.txt; echo AGORA ARQUIVO JA EXISTE; fi | ||
clear && cd ~ && if [ -e .opentictactoe-cfg/configure ]; then echo DIRETORIO JA EXISTE; else echo CRIANDO DIRETORIO; mkdir .opentictactoe-cfg; cd .opentictactoe-cfg && mkdir configure; echo AGORA DIRETORIO JA EXISTE; fi; cd ~ && cd .opentictactoe-cfg/configure && if [ -e configApp.txt ]; then echo ARQUIVO JA EXISTE; else touch configApp.txt; echo mus3 > configApp.txt; echo AGORA ARQUIVO JA EXISTE; fi && cd ~ && cd .opentictactoe-cfg/configure && if [ -e configBG.txt ]; then echo ARQUIVO JA EXISTE; else touch configBG.txt; echo BG1 > configBG.txt; echo AGORA ARQUIVO JA EXISTE; fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
10 Vitórias do Player 1 x Computador | ||
100 Vitórias do Player 1 x Computador | ||
1000 Vitórias do Player 1 x Computador | ||
|
||
100 Empates | ||
|
||
100 Partidas | ||
250 Partidas | ||
500 Partidas | ||
1000 Partidas | ||
|
||
|
||
NÃO EM PRATICA! |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.