즐겨찾기 설정

패널 파일 찾는 방법[발롱도르~]

  • spqlq
  • 893
  • 2
  • 15

이 화면을 수정할려면 어떤 화면을 수정해야 할지 처음에 막막합니다.

 

그래서 패널 파일 찾는 방법을 알아봅시다. 

 

 

우선 파일들을 만는 사람들이 영어를 쓰기 때문에

 

에펨 언어를 영어로 바꾸어줍니다. 

 

K-089.png

 

환경설정에서 게임언어를 영국 English 로 바꾸어 줍니다. 

데이터언어는 그대로 두어도 됩니다.

 

 

우선 가장 많이 보게 되는 선수 프로필 화면 파일을 찾아봅시다.

 

K-091.png

 

 

상단 메뉴들을 잘 보아야 합니다. 

 

overview , contract, transfer, development, reports, interaction, comparison, history 가 있네요

 

그리고 선수 프로필 화면은

 

overview 에서 profile 메뉴를 선택하면 보여지는 화면인 것을 알았습니다. 

 

 

 

 

Football Manager 2018 Resource Archiver 로 fmf 파일들 압축을 풀어주었을거예요

아직 안했다면 우선 panels.fmf , skins.fmf 파일을 풀어줍니다. 

 

 

skins.fmf 파일 압축을 풀어준 곳에 보면 여러 폴더들이 생긴것을 볼 수 있습니다.

 

거기서 fm/sections/section meta data.xml 이 패널 파일을 찾을 수 있는 파일입니다. 

 

 

section meta data.xml 파일을 열어봅니다.

 

 

K-092.png

 

이런식으로 쭉 적혀있을거예요

 

이것들이 의미하는 것을 먼저 살펴봅시다.

 

<record id="Aint" section="Aint">
  <translation id="text" translation_id="316832" type="use" value="Main Menu[COMMENT: application screen; main menu section]" />
  <record id="widget_info">
    <symbol id="class" value="intro_panel" />
  </record>
</record>

 

id="Aint"  아이디가 Aint .. 별뜻 없습니다. 그냥 아이디 정의해 주는거 같습니다.

 

section="Aint"  섹션이 Aint 인데.. 이 페이지를 볼려면 섹션 Aint 를 지정해주면 이 페이지로 간다. 이런 뜻 같습니다. 버튼이나 링크 같은 곳에 쓰입니다.

 

<translation id="text" translation_id="316832" type="use" value="Main Menu[COMMENT: application screen; main menu section]" />

"Main Menu"라는 text 텍스트를 translation_id="316832"  영어가 아닐 경우 316832번으로 번역해라 입니다. 

번역파일 열어보면 [숫자-번역] 이런식으로 구성된 것을 확인하실 수 있습니다. 

[COMMENT:~~] 부분은 그냥 설명을 적어놓은 것이므로 크게 신경쓰지 않아도 됩니다. 

 

<record id="widget_info">
  <symbol id="class" value="intro_panel" />
</record>

이 페이지를 widget으로 쓸 경우 class는 intro_panel 이다 라는 것입니다. 

다른 페이지에서 이 화면을 불러와 쓸 경우 widget class="intro_panle" 로 쓸 수 있습니다. 

 

그리고 가장 중요한 것은 이 intro_panel 이 바로 우리가 찾는 화면의 파일이름인 경우가 많습니다.

 

 

 

 

 

다시 선수프로필 화면으로 돌아가 봅시다. 

 

메뉴 이름이 profile 입니다. 

 

translation 부분에서 value="Profile" 인 것을 찾으면 됩니다. 

 

section meta data.xml 에서 profile을 ctrl+F 로 찾아봅시다

 

comment 부분에 있는 것은 넘기고

 

<!-- continent -->
    <record id="CtOv" section="CtOv" help_page="world">
      <translation id="text" translation_id="320576" type="use" value="Profile[COMMENT: title of human attributes screen]" />
      <record id="widget_info">
        <symbol id="class" value="continent_overview_panel" />
      </record>
    </record>

 

이부분이 보이네요

continent_overview_panel  이 파일이겠네요

 

이 파일을 panel.fmf 파일 압축 푼 곳에서 찾아봅니다.

 

continent overview.xml 파일이 나옵니다. 

이렇게 panel부분은 빼고 continent overview.xml 이런 식으로 파일 이름이 된 경우도 많이 있습니다. 

 

이제 찾은 continent overview.xml 파일을 열어봅니다. 이 파일이 nation 폴더에 있어서 아닌거 같지만 열어서 정말 아닌지 확인합니다. 

 

아니네요 ㅎㅎ

 

다음.

 

<record id="Plov" section="Plov">
    <translation id="text" translation_id="320576" type="use" value="Profile[COMMENT: title of human attributes screen]" />
    <record id="widget_info">
        <symbol id="class" value="player_overview_panel" />
    </record>
</record>

 

player overview panel 입니다. 찾아보니까 player 폴더에 player overview panel.xml 파일이 있습니다. 

 

열어서 확인해보니 맞네요

 

 

 

 

 

아래에 

 

 <record id="Pply" section="Pply" help_page="player#profile">
      <translation id="text" translation_id="308493" type="use" value="Attributes[COMMENT: title of agent attributes screen]" />
      <record id="widget_info">
        <symbol id="class" value="player_profile_panel" />
      </record>
    </record>

 

이것은 attributes 메뉴. 파일은 player profile panel.

 

에펨에서 overview - attributes 메뉴의 파일인 것을 알 수 있습니다. 

 

 

 

 

 

이런식으로 수정하고 싶은 파일을 찾을 수 있습니다. 

 

영어 단어만 조금 알아도 쉽게 파일을 찾을 수 있습니다.

 

 

 

메뉴에 없더라도

section meta data.xml 파일을 쭉 둘러보면 웬만한 파일은 다 알아낼 수 있습니다. 

 

 

 

 

 <record id="mplu" section="mplu" help_page="match_day#live">
      <translation id="text" translation_id="247370" type="use" value="Line Ups" />
      <record id="widget_info">
        <symbol id="class" value="match_preview_lineups_panel" />
      </record>
    </record>

 

이렇게 경기중 화면도 알 수 있습니다. 

 

 

 

 


 

 

다른 방법도 있습니다. profile을 찾을 경우 하나하나 다 찾기엔 찾기 결과값이 너무 많습니다. 

 

그래서 skins.fmf 파일 압축 푼 곳에서

 

fm/sections/person section.xml 파일을 열어봅니다. 

 

K-093.png

 

이런식으로 인물에 나오는 메뉴들이 다 있습니다. 

 

overview - profile 화면을 찾을려면

 

overview 부분에서 

 

<!-- Profile --> 부분을 찾으면 됩니다. 

 

두개가 있는데

 

id가 Plov, PRet  입니다. 

 

이 것을 다시 section meta data.xml 에서 찾습니다. 

 

plov는 player_overview_panel

 

PRet는 retired_person_profile_panel

 

파일 이름을 보면 당연히 plov 가 우리가 찾는 것이라는 것을 알 수 있습니다. 

 

 

 

 

이상입니다. 

 

 

 

section meta data 에서 찾지 못하는 화면은 panels.fmf 안의 파일들 이름을 보면서 추측하며 찾거나 다른 사람에게 물어보면 됩니다 ㅋㅋ

 

 

 

 

 

 

 

 

스토크검증님 포함 15명이 추천

추천인 15


  • 스토크검증

  • 뎌차

  • hihihidi

  • 생명

  • 은퇴한코디악

  • pokle
  • 베니테즈
    베니테즈

  • 남극고양이

  • 사쿠라미코
  • 반커브
    반커브

공유

facebooktwitterpinterestbandkakao story
퍼머링크

댓글 2

권한이 없습니다. 로그인

신고

"님의 댓글"

이 댓글을 신고 하시겠습니까?

삭제

"님의 댓글"

이 댓글을 삭제하시겠습니까?