Project

General

Profile

Download (5.95 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / java / org / distorted / dialogs / RubikDialogSetName.java @ 85248b04

1 f895e77a Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2020 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// Magic Cube is free software: you can redistribute it and/or modify                            //
7
// it under the terms of the GNU General Public License as published by                          //
8
// the Free Software Foundation, either version 2 of the License, or                             //
9
// (at your option) any later version.                                                           //
10
//                                                                                               //
11
// Magic Cube is distributed in the hope that it will be useful,                                 //
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14
// GNU General Public License for more details.                                                  //
15
//                                                                                               //
16
// You should have received a copy of the GNU General Public License                             //
17
// along with Magic Cube.  If not, see <http://www.gnu.org/licenses/>.                           //
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20 1f9772f3 Leszek Koltunski
package org.distorted.dialogs;
21 f895e77a Leszek Koltunski
22
import android.app.Dialog;
23
import android.content.DialogInterface;
24
import android.os.Bundle;
25 66e777b0 Leszek Koltunski
import androidx.annotation.NonNull;
26
import androidx.fragment.app.FragmentActivity;
27
import androidx.appcompat.app.AlertDialog;
28
import androidx.appcompat.app.AppCompatDialogFragment;
29 1bdf3dc2 Leszek Koltunski
import android.text.Editable;
30
import android.text.TextWatcher;
31 f895e77a Leszek Koltunski
import android.view.LayoutInflater;
32
import android.view.View;
33
import android.view.Window;
34
import android.view.WindowManager;
35 1bdf3dc2 Leszek Koltunski
import android.widget.Button;
36 f895e77a Leszek Koltunski
import android.widget.EditText;
37
import android.widget.TextView;
38
39 1f9772f3 Leszek Koltunski
import org.distorted.main.R;
40
import org.distorted.main.RubikActivity;
41
import org.distorted.objects.RubikObjectList;
42 f895e77a Leszek Koltunski
import org.distorted.scores.RubikScores;
43 1f9772f3 Leszek Koltunski
import org.distorted.states.RubikState;
44
import org.distorted.states.RubikStatePlay;
45 f895e77a Leszek Koltunski
46
///////////////////////////////////////////////////////////////////////////////////////////////////
47
48
public class RubikDialogSetName extends AppCompatDialogFragment
49
  {
50 90fd47b0 Leszek Koltunski
  private EditText mEdit;
51
52 f895e77a Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
53
54
  @NonNull
55
  @Override
56
  public Dialog onCreateDialog(Bundle savedInstanceState)
57
    {
58
    FragmentActivity act = getActivity();
59
    LayoutInflater inflater = act.getLayoutInflater();
60
    AlertDialog.Builder builder = new AlertDialog.Builder(act);
61
62
    Bundle args = getArguments();
63
    String name;
64
65
    try
66
      {
67
      name = args.getString("name");
68
      }
69
    catch(Exception e)
70
      {
71
      name = "";
72
      }
73
74
    boolean first = name.length()==0;
75
76
    TextView tv = (TextView) inflater.inflate(R.layout.dialog_title, null);
77
    tv.setText( first ? R.string.choose_name : R.string.name_taken);
78
    builder.setCustomTitle(tv);
79
80
    final View view = inflater.inflate(R.layout.dialog_set_name, null);
81
    TextView text = view.findViewById(R.id.set_name_message);
82 90fd47b0 Leszek Koltunski
    mEdit = view.findViewById(R.id.set_name);
83 f895e77a Leszek Koltunski
84
    if( first )
85
      {
86
      text.setText(R.string.new_name);
87
      }
88
    else
89
      {
90
      text.setText(act.getString(R.string.new_name_try_again, name));
91
      }
92
93
    builder.setCancelable(true);
94 db266f25 Leszek Koltunski
95 f895e77a Leszek Koltunski
    builder.setPositiveButton( R.string.ok, new DialogInterface.OnClickListener()
96
      {
97
      @Override
98
      public void onClick(DialogInterface dialog, int which)
99
        {
100 90fd47b0 Leszek Koltunski
        String name = mEdit.getText().toString();
101
102
        if( name.length()>0 )
103
          {
104
          RubikActivity act = (RubikActivity)getActivity();
105
          RubikState.switchState(act,RubikState.PLAY);
106
          RubikScores.getInstance().setName(name);
107
          RubikStatePlay play = (RubikStatePlay) RubikState.PLAY.getStateClass();
108
109
          int object = play.getObject();
110
          int size   = play.getSize();
111
          int sizeIndex = RubikObjectList.getSizeIndex(object,size);
112
113
          Bundle bundle = new Bundle();
114
          bundle.putInt("tab", RubikObjectList.pack(object,sizeIndex) );
115
          bundle.putBoolean("submitting", true);
116
117
          RubikDialogScores scores = new RubikDialogScores();
118
          scores.setArguments(bundle);
119
          scores.show(act.getSupportFragmentManager(), null);
120
          }
121 f895e77a Leszek Koltunski
        }
122
      });
123
124
    builder.setView(view);
125 1bdf3dc2 Leszek Koltunski
    final Dialog dialog = builder.create();
126 db266f25 Leszek Koltunski
    dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
127 f895e77a Leszek Koltunski
128 90fd47b0 Leszek Koltunski
    mEdit.requestFocus();
129 1bdf3dc2 Leszek Koltunski
130 90fd47b0 Leszek Koltunski
    mEdit.addTextChangedListener(new TextWatcher()
131 1bdf3dc2 Leszek Koltunski
      {
132
      @Override
133
      public void afterTextChanged(Editable s) {}
134
135
      @Override
136
      public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
137
138
      @Override
139
      public void onTextChanged(CharSequence s, int start, int before, int count)
140
        {
141
        ((AlertDialog) dialog).getButton(AlertDialog.BUTTON_POSITIVE).setEnabled(count>0);
142
        }
143
      });
144
145 85248b04 Leszek Koltunski
    dialog.setCanceledOnTouchOutside(false);
146
147
    Window window = dialog.getWindow();
148
149
    if( window!=null )
150
      {
151
      window.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
152
      }
153
154
    Button positiveButton = ((AlertDialog)dialog).getButton(Dialog.BUTTON_POSITIVE);
155
156
    if( positiveButton!=null )
157
      {
158
      String editName = mEdit.getText().toString();
159
      positiveButton.setEnabled(editName.length()>0);
160
      }
161
162 db266f25 Leszek Koltunski
    return dialog;
163 f895e77a Leszek Koltunski
    }
164
  }