/* * Copyright 2015 Daniel Dittmar * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package dan.dit.whatsthat.riddle; import android.support.annotation.NonNull; import android.util.DisplayMetrics; import android.util.Log; import dan.dit.whatsthat.riddle.achievement.AchievementDataRiddleGame; import dan.dit.whatsthat.riddle.achievement.AchievementDataRiddleType; import dan.dit.whatsthat.riddle.control.RiddleControllerFactory; import dan.dit.whatsthat.riddle.types.PracticalRiddleType; /** * Configures a riddle game, providing additional (required) hints how it should behave and look like. * Also provides metadata hints produces by the RiddleMaker. This is a structure class and therefore * some data might not be initialized (properly). * Created by daniel on 23.04.15. */ public class RiddleConfig { public boolean mHintImageReused; // hints that the image was reused by the same type, bad! public boolean mHintImageReusedOtherType; // hints that the image was already used by another type public boolean mHintImageRefused; // gives a hint if this image's riddle was refused by the riddle type public boolean mHintNoImageSecrets; // if true this allows the RiddleHintView to show image details like source and name public int mScreenDensity = DisplayMetrics.DENSITY_HIGH; // default hdpi public int mHeight; // initialized on initBitmap call public int mWidth; public RiddleControllerFactory mControllerFactory; public AchievementDataRiddleGame mAchievementGameData; public AchievementDataRiddleType mAchievementTypeData; public RiddleConfig(int width, int height) { mWidth = width; mHeight = height; if (width <= 0) { Log.e("Riddle", "Setting negative or zero width for RiddleConfig: " + width); mWidth = 480; } if (height <= 0) { Log.e("Riddle", "Setting negative or zero height for RiddleConfig: " + height); mHeight = 480; } setDefaultAchievementData(); } public void setAchievementData(@NonNull PracticalRiddleType type) { mAchievementGameData = type.getAchievementDataGame(); mAchievementTypeData = type.getAchievementData(null); // if one data is not available set both to empty default // this will not be the case if all initialization of riddle data is done properly if (mAchievementGameData == null || mAchievementTypeData == null) { setDefaultAchievementData(); } } private void setDefaultAchievementData() { mAchievementGameData = AchievementDataRiddleGame.getNullObject(); mAchievementTypeData = AchievementDataRiddleType.getNullObject(); } }