/**
 * <p>
 * Copyright © 2009-2010, Bruce-Robert Pocock
 * </p>
 * <p>
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or (at
 * your option) any later version.
 * </p>
 * <p>
 * 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 GNU
 * General Public License for more details.
 * </p>
 * <p>
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 * </p>
 * 
 * @author brpocock
 */
package org.starhope.valerius.game;

import org.starhope.valerius.util.CatulliConfig;
import org.starhope.vergil.logic.GameImplementor;

public class GaiusValeriusCatullus extends Activity implements
GameImplementor {

	private CatulliConfig configCatulli;

	/**
	 * @see org.starhope.vergil.logic.GameImplementor#getGameCopyright()
	 */
	public String getGameCopyright () {
		// TODO Auto-generated method stub
		return null;
	}

	/**
	 * @see org.starhope.vergil.logic.GameImplementor#getGameSubtitle()
	 */
	public String getGameSubtitle () {
		// TODO Auto-generated method stub
		return null;
	}

	/**
	 * @see org.starhope.vergil.logic.GameImplementor#getGameTitle()
	 */
	public String getGameTitle () {
		// TODO Auto-generated method stub
		return null;
	}

	/**
	 * @see org.starhope.vergil.logic.GameImplementor#isDebug()
	 */
	public boolean isDebug () {
		return configCatulli.isDebug ();
	}

	/**
	 * @see org.starhope.vergil.logic.GameImplementor#logEvent(java.lang.String,
	 *      java.lang.String)
	 */
	public void logEvent (final String eventCode, final String details) {
		// TODO Auto-generated method stub

	}

	/**
	 * Called when the activity is first created.
	 * */
	@Override
	public void onCreate (final Bundle savedInstanceState) {
		super.onCreate (savedInstanceState);
		configCatulli = new CatulliConfig (savedInstanceState);
		setContentView (R.layout.main);
	}

	/**
	 * @see org.starhope.vergil.logic.GameImplementor#reportBug(java.lang.String)
	 */
	public void reportBug (final String string) {
		if (isDebug ()) {

		}
	}

	/**
	 * @see org.starhope.vergil.logic.GameImplementor#reportBug(java.lang.String,
	 *      java.lang.Throwable)
	 */
	public void reportBug (final String string, final Throwable t) {
		// TODO Auto-generated method stub

	}

	/**
	 * @see org.starhope.vergil.logic.GameImplementor#reportBug(java.lang.Throwable)
	 */
	public void reportBug (final Throwable t) {
		// TODO Auto-generated method stub

	}
}