Giter Club home page Giter Club logo

pokerom-trader's People

Contributors

savaughn avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

devilla

pokerom-trader's Issues

Gen 2 trading is incorrectly blocked

Describe the bug
When trading crystal to crystal there is a restriction on all pkmn.

image

To Reproduce
Steps to reproduce the behavior:
Trade -> select 2 crystal files

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

Select Save File UI

It'd be nice to see the save file data in addition to the filename such as on pokemon stadium

Image

pksav_gen2_export_text adds unknown chars to remainder of string

If a string is less than 10 chars, then any unused chars are rendered in-game as a ?.

Screenshot 2023-09-23 at 11 39 53 PM Screenshot 2023-09-23 at 11 40 27 PM Screenshot 2023-09-23 at 11 40 32 PM

Minimum Example

    char tmp_nickname[11];
    pksav_gen2_import_text(save->pokemon_storage.p_party->nicknames[0], tmp_nickname, 10);
    pksav_gen2_export_text(tmp_nickname, save->pokemon_storage.p_party->nicknames[1], 10);

Attached mail is unreadable

when mail is opened on a pokemon received the mail is full of question marks.
If the pokemon is traded back to the OT, then the mail is readable again.

image image

build pksav as static lib

Is your feature request related to a problem? Please describe.
build libpksav.a instead so that I don't have to bundle it with executables

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Implement Bill's PC

Implement Bill's PC to move between boxes and party so that you don't have to load in game first.

save files buffer overflow in macos app

STR
download pokeromtrader from artifacts
chmod +x pokeromtrader in package contents
add saves folder with saves in the same folder as the executable in package contents
open app -> select trade
see crash

Cut lib deps to bare essentials

cut out all unnecessary library code from pksav and raylib to help reduce executable size

  • remove all gen 4+ code from pksav

Toast timer is persistent after screen navigation

Describe the bug
A clear and concise description of what the bug is.

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

DV viewer

view all dvs of each party member.

re-roll dvs / generate new stats

all of the code is present to make this possible.

Trade - 0 attack stat

Describe the bug
the atk is 0 on a level 100 pkmn. I think the source save file is a hacked file so it might just be off.
image

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

Gen2 crystal playtime is incorrect

Describe the bug
A clear and concise description of what the bug is.

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

ESC key shouldn't close window

Describe the bug
This is a hold-over from development. Make ESC key back navigate, then quit on main menu.

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

optimize image asset use

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Main Menu UI

Looking for something with color

maybe red/white background with yellow reactive menu buttons

Generic trainer art

No official pokemon art should be used in this project to avoid copyright infrigement

Gen3 support

technically possible with pksav

struct pksav_gba_save *gen3_save;
struct pksav_gba_pokemon_party *pkmn_party = &gen3_save->pokemon_storage.p_party;
struct pksav_gba_pokemon *pkmn_1 = &pkmn_party->party[0];

Build yaml for artifacts is broken

Build artifacts bundles the libpksav.dylib in the frameworks folder for app bundling, but breaks if you attempt to execute the artifacts directly.

download an artifacts zip not an app bundle.
attempt to execute pokeromtrader
see lib error

confirmation modal width is incorrect

Describe the bug
image
To Reproduce
Steps to reproduce the behavior:

  1. settings
  2. reset to defaults

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

Trainer name doesn't fit box on trade screen

Describe the bug
trainer name "CRYSTAL" is too long, and the L overhangs the box when details pane is closed. both left and right boxes.

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

Add Trade with NPCs

the data exists in parties.asm

Trade with any NPC or maybe just gym leaders / oak / red

Save file names too long for display

Describe the bug
truncate file names that are too long for SaveContainer component.

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

App icons

Is your feature request related to a problem? Please describe.
app icons for windows, linux, macos

something is wrong with generation detection

Describe the bug
silver is considered invalid
crystal <> crystal is marked as cross-gen

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

save file name index wrong

Describe the bug
if you change the saves directory while the app is open and navigate away from file select and back to it, then the names will shift.

reset save_file_data on navigation to file select screen

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.