-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #189 from Bram-Hub/puzzle-editor
Puzzle Editor Major Changes
- Loading branch information
Showing
86 changed files
with
2,227 additions
and
926 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
src/main/java/edu/rpi/legup/controller/EditorElementController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package edu.rpi.legup.controller; | ||
|
||
import edu.rpi.legup.app.GameBoardFacade; | ||
import edu.rpi.legup.app.LegupPreferences; | ||
import edu.rpi.legup.history.*; | ||
import edu.rpi.legup.model.Puzzle; | ||
import edu.rpi.legup.model.elements.Element; | ||
import edu.rpi.legup.model.gameboard.CaseBoard; | ||
import edu.rpi.legup.model.rules.*; | ||
import edu.rpi.legup.model.tree.TreeElement; | ||
import edu.rpi.legup.model.tree.TreeElementType; | ||
import edu.rpi.legup.ui.proofeditorui.rulesview.RuleButton; | ||
import edu.rpi.legup.ui.proofeditorui.treeview.TreeElementView; | ||
import edu.rpi.legup.ui.proofeditorui.treeview.TreePanel; | ||
import edu.rpi.legup.ui.proofeditorui.treeview.TreeView; | ||
import edu.rpi.legup.ui.proofeditorui.treeview.TreeViewSelection; | ||
import edu.rpi.legup.ui.puzzleeditorui.elementsview.ElementButton; | ||
|
||
import javax.swing.*; | ||
import java.awt.event.ActionEvent; | ||
import java.awt.event.ActionListener; | ||
import java.util.List; | ||
|
||
import static edu.rpi.legup.app.GameBoardFacade.getInstance; | ||
|
||
public class EditorElementController implements ActionListener { | ||
protected Object lastSource; | ||
|
||
public EditorElementController() { | ||
super(); | ||
} | ||
|
||
public void buttonPressed(Element element) { | ||
// TODO: implement what happens when element is pressed | ||
} | ||
|
||
@Override | ||
public void actionPerformed(ActionEvent e) { | ||
lastSource = e.getSource(); | ||
ElementButton button = (ElementButton) lastSource; | ||
buttonPressed(button.getElement()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.