aboutsummaryrefslogtreecommitdiffstats
path: root/assetstudio/src/com/android/assetstudiolib/TabIconGenerator.java
blob: 506aebd4e0a266fea9e26f62f04ce4c76d69580b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
 * Copyright (C) 2011 The Android Open Source Project
 *
 * Licensed under the Eclipse Public License, Version 1.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.eclipse.org/org/documents/epl-v10.php
 *
 * 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 com.android.assetstudiolib;

import com.android.assetstudiolib.Util.Effect;
import com.android.assetstudiolib.Util.FillEffect;
import com.android.assetstudiolib.Util.ShadowEffect;

import java.awt.Color;
import java.awt.GradientPaint;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.image.BufferedImage;
import java.util.Map;


/**
 * Generate icons for tabs
 */
public class TabIconGenerator extends GraphicGenerator {
    /** Creates a new {@link TabIconGenerator} */
    public TabIconGenerator() {
    }

    @Override
    public BufferedImage generate(GraphicGeneratorContext context, Options options) {
        Rectangle iconSizeHdpi = new Rectangle(0, 0, 48, 48);
        Rectangle targetRectHdpi = new Rectangle(3, 3, 42, 42);
        final float scaleFactor = GraphicGenerator.getHdpiScaleFactor(options.density);
        Rectangle imageRect = Util.scaleRectangle(iconSizeHdpi, scaleFactor);
        Rectangle targetRect = Util.scaleRectangle(targetRectHdpi, scaleFactor);
        BufferedImage outImage = Util.newArgbBufferedImage(imageRect.width, imageRect.height);
        Graphics2D g = (Graphics2D) outImage.getGraphics();

        BufferedImage tempImage = Util.newArgbBufferedImage(
                imageRect.width, imageRect.height);
        Graphics2D g2 = (Graphics2D) tempImage.getGraphics();
        Util.drawCenterInside(g2, options.sourceImage, targetRect);

        TabOptions tabOptions = (TabOptions) options;
        if (tabOptions.selected) {
            if (tabOptions.oldStyle) {
                Util.drawEffects(g, tempImage, 0, 0, new Effect[] {
                        new FillEffect(
                                new GradientPaint(
                                        0, 0,
                                        new Color(0xa3a3a3),
                                        0, imageRect.height,
                                        new Color(0x787878))),
                        new ShadowEffect(
                                0,
                                3 * scaleFactor,
                                3 * scaleFactor,
                                Color.BLACK,
                                0.2,
                                true),
                        new ShadowEffect(
                                0,
                                1,
                                0,
                                Color.BLACK,
                                0.35,
                                true),
                        new ShadowEffect(
                                0,
                                -1,
                                0,
                                Color.WHITE,
                                0.35,
                                true),
                });
            } else {
                Util.drawEffects(g, tempImage, 0, 0, new Effect[] {
                        new FillEffect(Color.WHITE),
                        new ShadowEffect(
                                0,
                                0,
                                5 * scaleFactor,
                                Color.BLACK,
                                0.25,
                                false),
                });
            }
        } else {
            // Unselected
            if (tabOptions.oldStyle) {
                Util.drawEffects(g, tempImage, 0, 0, new Effect[] {
                        new FillEffect(
                                new GradientPaint(
                                        0, 0.25f * imageRect.height,
                                        new Color(0xf9f9f9),
                                        0, imageRect.height,
                                        new Color(0xdfdfdf))),
                        new ShadowEffect(
                                0,
                                3 * scaleFactor,
                                3 * scaleFactor,
                                Color.BLACK,
                                0.1,
                                true),
                        new ShadowEffect(
                                0,
                                1,
                                0,
                                Color.BLACK,
                                0.35,
                                true),
                        new ShadowEffect(
                                0,
                                -1,
                                0,
                                Color.WHITE,
                                0.35,
                                true),
                });
            } else {
                Util.drawEffects(g, tempImage, 0, 0, new Effect[] {
                        new FillEffect(new Color(0x808080)),
                });
            }
        }

        g.dispose();
        g2.dispose();

        return outImage;
    }

    @Override
    public void generate(String category, Map<String, Map<String, BufferedImage>> categoryMap,
            GraphicGeneratorContext context, Options options, String name) {
        TabOptions tabOptions = (TabOptions) options;
        // Generate all permutations of tabOptions.selected and tabOptions.oldStyle
        tabOptions.selected = true;
        tabOptions.oldStyle = false;
        super.generate("Selected (v5+)", categoryMap, context, options, name);
        tabOptions.oldStyle = true;
        super.generate("Selected", categoryMap, context, options, name);
        tabOptions.selected = false;
        tabOptions.oldStyle = false;
        super.generate("Unselected (v5+)", categoryMap, context, options, name);
        tabOptions.oldStyle = true;
        super.generate("Unselected", categoryMap, context, options, name);
    }

    @Override
    protected String getIconFolder(Options options) {
        String folder = super.getIconFolder(options);

        TabOptions tabOptions = (TabOptions) options;
        if (tabOptions.oldStyle) {
            return folder;
        } else {
            return folder + "-v5"; //$NON-NLS-1$
        }
    }

    @Override
    protected String getIconName(Options options, String name) {
        TabOptions tabOptions = (TabOptions) options;
        if (tabOptions.selected) {
            return name + "_selected.png"; //$NON-NLS-1$
        } else {
            return name + "_unselected.png"; //$NON-NLS-1$
        }
    }

    /** Options specific to generating tab icons */
    public static class TabOptions extends GraphicGenerator.Options {
        /** Generate icon in the style used prior to v5 */
        public boolean oldStyle;
        /** Generate "selected" icon if true, and "unselected" icon if false */
        public boolean selected = true;
    }
}