Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
org.benoitharrault.puzzlegame
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
android
org.benoitharrault.puzzlegame
Commits
2b0050ba
Commit
2b0050ba
authored
3 years ago
by
Benoît Harrault
Browse files
Options
Downloads
Plain Diff
Merge branch '16-allow-choose-tileset-size' into 'master'
Resolve "Allow choose tileset size" Closes
#16
See merge request
!12
parents
66557b1c
4cda62e5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!12
Resolve "Allow choose tileset size"
Pipeline
#1245
passed
3 years ago
Stage: update
Stage: build-debug
Stage: build-release
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
android/gradle.properties
+2
-2
2 additions, 2 deletions
android/gradle.properties
lib/provider/data.dart
+10
-0
10 additions, 0 deletions
lib/provider/data.dart
lib/screens/home.dart
+48
-12
48 additions, 12 deletions
lib/screens/home.dart
with
60 additions
and
14 deletions
android/gradle.properties
+
2
−
2
View file @
2b0050ba
org.gradle.jvmargs
=
-Xmx1536M
android.useAndroidX
=
true
android.enableJetifier
=
true
app.versionName
=
0.0.
8
app.versionCode
=
8
app.versionName
=
0.0.
9
app.versionCode
=
9
This diff is collapsed.
Click to expand it.
lib/provider/data.dart
+
10
−
0
View file @
2b0050ba
...
...
@@ -4,6 +4,9 @@ import '../entities/tile.dart';
class
Data
extends
ChangeNotifier
{
// application configuration
int
_tilesCount
=
3
;
// application data
List
_images
=
[];
String
_image
=
''
;
...
...
@@ -19,6 +22,13 @@ class Data extends ChangeNotifier {
notifyListeners
();
}
int
get
tilesCount
=
>
_tilesCount
;
set
updateTilesCount
(
int
value
)
{
_tilesCount
=
value
;
notifyListeners
();
}
List
get
images
=
>
_images
;
set
updateImages
(
List
value
)
{
...
...
This diff is collapsed.
Click to expand it.
lib/screens/home.dart
+
48
−
12
View file @
2b0050ba
...
...
@@ -12,9 +12,6 @@ import '../utils/get_images_list.dart';
class
Home
extends
StatelessWidget
{
static
const
String
id
=
'home'
;
int
_linesCount
=
4
;
int
_columnsCount
=
4
;
double
_selectorImageSize
=
200
;
double
_tipImageSize
=
100
;
double
_tileImageSize
=
80
;
...
...
@@ -84,6 +81,43 @@ class Home extends StatelessWidget {
);
}
FlatButton
_buildTilesetSizeSelectorItem
(
Data
myProvider
,
int
value
)
{
BoxDecoration
border
=
myProvider
.
tilesCount
==
value
?
BoxDecoration
(
borderRadius:
BorderRadius
.
circular
(
4
),
border:
Border
.
all
(
color:
Colors
.
blue
[
100
],
width:
4
,
),
)
:
null
;
return
FlatButton
(
child:
Container
(
padding:
EdgeInsets
.
all
(
5
),
decoration:
border
,
child:
Text
(
value
.
toString
()
+
'x'
+
value
.
toString
()),
),
onPressed:
()
{
myProvider
.
updateTilesCount
=
value
;
},
);
}
Container
_buildTilesetSizeSelector
(
Data
myProvider
)
{
return
Container
(
child:
Center
(
child:
Row
(
mainAxisAlignment:
MainAxisAlignment
.
center
,
crossAxisAlignment:
CrossAxisAlignment
.
center
,
children:
[
_buildTilesetSizeSelectorItem
(
myProvider
,
3
),
_buildTilesetSizeSelectorItem
(
myProvider
,
4
),
],
),
),
);
}
Future
<
List
<
Tile
>>
splitImageInTiles
(
Data
myProvider
)
async
{
String
imageAsset
=
getImageAssetName
(
myProvider
.
image
);
Uint8List
imageData
=
(
await
rootBundle
.
load
(
imageAsset
))
...
...
@@ -92,12 +126,12 @@ class Home extends StatelessWidget {
imglib
.
Image
image
=
imglib
.
decodeImage
(
imageData
);
int
x
=
0
,
y
=
0
;
int
width
=
(
image
.
width
/
_lin
esCount
)
.
round
();
int
height
=
(
image
.
height
/
_column
sCount
)
.
round
();
int
width
=
(
image
.
width
/
myProvider
.
til
esCount
)
.
round
();
int
height
=
(
image
.
height
/
myProvider
.
tile
sCount
)
.
round
();
List
<
Tile
>
tiles
=
List
<
Tile
>();
for
(
int
i
=
0
;
i
<
_lin
esCount
;
i
++
)
{
for
(
int
j
=
0
;
j
<
_column
sCount
;
j
++
)
{
for
(
int
i
=
0
;
i
<
myProvider
.
til
esCount
;
i
++
)
{
for
(
int
j
=
0
;
j
<
myProvider
.
tile
sCount
;
j
++
)
{
tiles
.
add
(
Tile
(
Image
.
memory
(
...
...
@@ -136,9 +170,9 @@ class Home extends StatelessWidget {
width:
2
,
),
children:
[
for
(
var
row
=
0
;
row
<
_lin
esCount
;
row
++
)
for
(
var
row
=
0
;
row
<
myProvider
.
til
esCount
;
row
++
)
TableRow
(
children:
[
for
(
var
col
=
0
;
col
<
_column
sCount
;
col
++
)
for
(
var
col
=
0
;
col
<
myProvider
.
tile
sCount
;
col
++
)
Column
(
children:
[
tiles
[
tileIndex
++
]
.
widget
(
myProvider
)]),
]),
]
...
...
@@ -236,9 +270,11 @@ class Home extends StatelessWidget {
_myProvider
.
image
==
''
?
Text
(
''
)
:
IconButton
(
icon:
const
Icon
(
Icons
.
arrow_left_outlined
),
onPressed:
()
=
>
resetGame
(
_myProvider
),
),
icon:
const
Icon
(
Icons
.
arrow_left_outlined
),
onPressed:
()
=
>
resetGame
(
_myProvider
),
)
,
_myProvider
.
image
==
''
?
_buildTilesetSizeSelector
(
_myProvider
)
:
Text
(
''
),
],
),
body:
SafeArea
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment