BMFontInfo.java :  » UnTagged » mosync » com » mobilesorcery » sdk » fontsupport » internal » wizard » Android Open Source

Android Open Source » UnTagged » mosync 
mosync » com » mobilesorcery » sdk » fontsupport » internal » wizard » BMFontInfo.java
/*  Copyright (C) 2009 Mobile Sorcery AB

    This program is free software; you can redistribute it and/or modify it
    under the terms of the Eclipse Public License v1.0.

    This program is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE. See the Eclipse Public License v1.0 for
    more details.

    You should have received a copy of the Eclipse Public License v1.0 along
    with this program. It is also available at http://www.eclipse.org/legal/epl-v10.html
*/
/**
 * 
 */
package com.mobilesorcery.sdk.fontsupport.internal.wizard;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

import com.mobilesorcery.sdk.core.Pair;

public class BMFontInfo {
  private int version;
  
  private List<BMFontInfoBlock> blocks = new ArrayList<BMFontInfoBlock>();
  
  private HashMap<Pair<Integer, Integer>, Integer> kernings = new HashMap<Pair<Integer, Integer>, Integer>();
  
  public int getVersion() {
    return version;
  }
  
  public BMFontInfoBlock getFirst(int type) {
    for (int i = 0; i < blocks.size(); i++) {
      if (blocks.get(i).isType(type)) {
        return blocks.get(i);
      }
    }
    
    return null;
  }

  protected void setKerning(int first, int second, int amount) {
    Pair kerningPair = new Pair(first, second);
    kernings.put(kerningPair, amount);
  }
  
  public int getKerning(int first, int second) {
    Integer result = kernings.get(new Pair(first, second));
    return result == null ? 0 : result;
  }
  
  public boolean hasKernings() {
    return !kernings.isEmpty();
  }

  void setVersion(int version) {
    this.version = version;
  }

  public void addBlock(BMFontInfoBlock block) {
    blocks.add(block);
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.