Changeset a10d422 in lost-perception for main/MapEditor.java


Ignore:
Timestamp:
Jun 4, 2020, 4:15:10 PM (4 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
master
Children:
57674f3
Parents:
5d846bb
Message:

Create a working makefile target for MapEditor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/MapEditor.java

    r5d846bb ra10d422  
    4040import java.awt.event.KeyListener;
    4141
    42 public class MapEditor implements KeyListener, MouseListener
    43 {
     42public class MapEditor implements KeyListener, MouseListener {
    4443    public static final int RES_X = 1024;
    4544    public static final int RES_Y = 768;
     
    9695    boolean highLevelPlacement;
    9796    Point playerLoc;
    98     Point start;
    9997   
    10098    public MapEditor(final GraphicsDevice device) {
    10199        this.started = false;
    102         this.start = null;
    103100        try {
    104101            GraphicsConfiguration gc = device.getDefaultConfiguration();
    105             gc = device.getDefaultConfiguration();
    106102            (MapEditor.frmMain = new Frame(gc)).setUndecorated(true);
    107103            MapEditor.frmMain.setIgnoreRepaint(true);
     
    117113            this.mapBuffer = gc.createCompatibleImage(800, 600);
    118114            this.mapG = this.mapBuffer.getGraphics();
    119             Utils.init(gc, false);
     115            Utils.init(gc, RUNNING_FROM_JAR);
    120116            this.state = State.Main;
    121117            this.auxState = AuxState.None;
     
    152148                }
    153149            }
    154         }
    155         catch (Exception e) {
     150        } catch (Exception e) {
    156151            e.printStackTrace();
    157152            return;
    158         }
    159         finally {
     153        } finally {
    160154            device.setFullScreenWindow(null);
    161155        }
     
    11041098            final GraphicsDevice device = env.getDefaultScreenDevice();
    11051099            new MapEditor(device);
    1106         }
    1107         catch (Exception e) {
     1100        } catch (Exception e) {
    11081101            e.printStackTrace();
    11091102        }
Note: See TracChangeset for help on using the changeset viewer.